Version: 2.1.0
Last Updated: October 2024
Requirements: Node.js 14+, browser support
npm install @mindpeeker/sdk
yarn add @mindpeeker/sdk
<script src="https://cdn.mindpeeker.com/sdk/v2.1.0/mindpeeker.js"></script>
Download Options:
Version: 1.8.3
Last Updated: October 2024
Requirements: Python 3.8+
pip install mindpeeker-sdk
conda install -c mindpeeker mindpeeker-sdk
pip install mindpeeker-sdk==1.8.3.dev0
Download Options:
Version: 1.5.2
Last Updated: October 2024
Requirements: Java 11+
<!-- Maven Dependency -->
<dependency>
<groupId>com.mindpeeker</groupId>
<artifactId>mindpeeker-sdk</artifactId>
<version>1.5.2</version>
</dependency>
<!-- Gradle Dependency -->
implementation 'com.mindpeeker:mindpeeker-sdk:1.5.2'
Download Options:
Version: 1.3.1
Last Updated: October 2024
Requirements: .NET 6.0+
dotnet add package MindPeeker.SDK
Install-Package MindPeeker.SDK
Download Options:
Version: 1.1.0
Last Updated: October 2024
Requirements: Go 1.18+
go get github.com/mindpeeker/go-sdk/v1
go get github.com/mindpeeker/go-sdk/v1@v1.1.0
Download Options:
Version: 2.0.1
Last Updated: October 2024
Complete API collection for testing and development:
{
"info": {
"name": "MindPeeker API v2",
"description": "Complete API collection for MindPeeker platform",
"version": "2.0.1"
},
"variable": [
{
"key": "baseUrl",
"value": "https://api.mindpeeker.com/v1"
},
{
"key": "apiKey",
"value": "your_api_key_here"
}
]
}
Download Options:
Version: 2.0.1
Format: OpenAPI 3.0.3
Complete API specification for integration:
Download Options:
Version: 2.0.1
Last Updated: October 2024
API collection for Insomnia REST client:
Download Options:
Version: 1.4.0
Requirements: Node.js 16+, Python 3.8+
Command-line interface for MindPeeker platform:
npm install -g @mindpeeker/cli
pip install mindpeeker-cli
mindpeeker auth login
mindpeeker session create --cue "Your question here" --type remote_viewing
mindpeeker session list
mindpeeker session results <session-id>
Download Options:
Version: Latest
Registry: docker.io/mindpeeker
Official Docker images for development and deployment:
docker pull mindpeeker/api-server:latest
docker pull mindpeeker/api-server:v2.1.0
docker run -p 3000:3000 mindpeeker/dev-environment:latest
Available Images:
mindpeeker/api-server: Production API servermindpeeker/web-app: Frontend applicationmindpeeker/dev-environment: Complete development setupmindpeeker/worker: Background job processormindpeeker/nginx: Reverse proxy configurationVersion: 2.0.0
Last Updated: October 2024
Kubernetes deployment manifests:
Download Options:
Format: JSON
Purpose: Standardized remote viewing session configurations
{
"template_name": "Standard Remote Viewing",
"session_type": "remote_viewing",
"parameters": {
"duration": 1800,
"confidence_threshold": 0.7,
"analysis_types": ["visual", "spatial", "temporal"],
"stages": ["preparation", "exploration", "detail", "summary"]
},
"cue_template": "Describe the location and characteristics of {target}",
"metadata": {
"protocol": "CRV",
"viewer_experience": "intermediate"
}
}
Download Options:
Format: JSON
Purpose: Dowsing session configurations
{
"template_name": "Location Dowsing",
"session_type": "dowsing",
"parameters": {
"method": "pendulum",
"question_type": "location",
"confidence_threshold": 0.8,
"iterations": 3
},
"cue_template": "Is {target} located at {location}?",
"metadata": {
"tool": "pendulum",
"verification_method": "cross_check"
}
}
Download Options:
Format: JSON
Purpose: Precognitive session configurations
{
"template_name": "Event Prediction",
"session_type": "precognition",
"parameters": {
"timeframe": "30_days",
"confidence_threshold": 0.6,
"analysis_types": ["temporal", "probability"],
"risk_assessment": true
},
"cue_template": "What significant events will occur in {context} within {timeframe}?",
"metadata": {
"prediction_type": "event_based",
"verification_period": "90_days"
}
}
Download Options:
Language: JavaScript/TypeScript
Framework: Node.js, Browser
// Basic session creation
import { MindPeekerClient } from '@mindpeeker/sdk';
const client = new MindPeekerClient({
apiKey: process.env.MINDPEEKER_API_KEY
});
async function createSession() {
const session = await client.sessions.create({
cue: 'Describe the location of the missing aircraft',
session_type: 'remote_viewing',
parameters: {
confidence_threshold: 0.8,
analysis_types: ['visual', 'spatial']
}
});
console.log('Session created:', session.id);
return session;
}
Download Options:
Language: Python
Framework: Flask, Django, FastAPI
from mindpeeker import MindPeekerClient
import asyncio
async def create_session():
client = MindPeekerClient(
api_key=os.getenv('MINDPEEKER_API_KEY')
)
session = await client.sessions.create(
cue='Describe the location of the missing aircraft',
session_type='remote_viewing',
parameters={
'confidence_threshold': 0.8,
'analysis_types': ['visual', 'spatial']
}
)
print(f"Session created: {session.id}")
return session
asyncio.run(create_session())
Download Options:
Language: Java
Framework: Spring Boot
// Basic session creation
import com.mindpeeker.client.MindPeekerClient;
import com.mindpeeker.model.*;
public class MindPeekerExample {
public static void main(String[] args) {
MindPeekerClient client = MindPeekerClient.builder()
.apiKey(System.getenv("MINDPEEKER_API_KEY"))
.build();
Session session = client.sessions().create(SessionCreateRequest.builder()
.cue("Describe the location of the missing aircraft")
.sessionType(SessionType.REMOTE_VIEWING)
.parameter("confidence_threshold", 0.8)
.parameter("analysis_types", Arrays.asList("visual", "spatial"))
.build());
System.out.println("Session created: " + session.getId());
}
}
Download Options:
Format: PDF
Last Updated: October 2024
Complete documentation in printable format:
Available Documents:
Format: HTML
Size: 150MB (compressed)
Complete offline documentation bundle:
Download Options:
Format: Various
Purpose: Learning and certification
Available Materials:
Format: .env, YAML, JSON
Purpose: Development and deployment configuration
Download Options:
Format: Various
Purpose: Third-party integrations
Available Integrations:
Format: Various
Purpose: Security testing and validation
Available Tools:
Format: PEM, CRT
Purpose: SSL/TLS configuration
Download Options:
Format: Various
Purpose: Diagnostic and problem resolution
Available Tools:
Format: Various
Purpose: Data migration and platform transitions
Available Tools:
Previous versions are available in our archive directory. Each major version is supported for 12 months after the next major release.
All downloads are provided with comprehensive documentation and support. For assistance with any of these resources, please contact our support team.