Complete developer resources for integrating with MindPeeker's psychic intelligence platform, including API documentation, SDKs, and comprehensive integration guides.
Get up and running in minutes with our step-by-step integration tutorial. Learn authentication, basic API calls, and best practices.
Understand MindPeeker's architecture, capabilities, and integration patterns for building powerful psychic intelligence applications.
Secure authentication methods including API keys, OAuth 2.0, and enterprise SSO integration.
Complete REST API documentation with all endpoints, parameters, and response formats.
Official SDKs for JavaScript, Python, Java, C#, and Go with examples and best practices.
Real-time event notifications and webhook configuration for monitoring session progress and results.
Step-by-step tutorials for common use cases and platform integrations.
CLI tools, Postman collections, and development utilities for faster integration.
Recommended patterns, security guidelines, and optimization techniques.
Common issues, debugging techniques, and problem resolution guides.
Version history, breaking changes, and new feature announcements.
Get help from our developer team and community forums.
# Register at developers.mindpeeker.com
# Create application and get API key
export MINDPEEKER_API_KEY="your_api_key_here"
# JavaScript/TypeScript
npm install @mindpeeker/sdk
# Python
pip install mindpeeker-sdk
# Java
mvn install com.mindpeeker:mindpeeker-sdk
import { MindPeekerClient } from '@mindpeeker/sdk'
const client = new MindPeekerClient({
apiKey: process.env.MINDPEEKER_API_KEY
})
const session = await client.sessions.create({
cue: 'Describe the location of the missing aircraft',
session_type: 'remote_viewing'
})
console.log('Session created:', session.id)
Browser and Node.js integration examples
Flask, Django, and FastAPI integrations
Spring Boot and Android applications
.NET and Unity game development
| Plan | Requests/Minute | Concurrent Sessions | Features |
|---|---|---|---|
| Free | 60 | 5 | Basic API access |
| Pro | 600 | 50 | Advanced features |
| Enterprise | 6000+ | 500+ | Custom limits |
curl -X POST "https://api.mindpeeker.com/v1/sessions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"cue": "Your question here", "session_type": "remote_viewing"}'
// Redirect user for authorization
const authUrl = `https://auth.mindpeeker.com/oauth/authorize?client_id=${CLIENT_ID}&response_type=code&redirect_uri=${REDIRECT_URI}`
// Exchange code for access token
const token = await client.oauth.exchangeCode(code)
mindpeeker-apiStart building powerful psychic intelligence applications with MindPeeker's comprehensive developer platform.