Intelligence Specs // v1.0
API ARCHIVE
Official documentation for the HuncH Intelligence Grid. Access predictive alpha and automate your trading vectors.
Authentication Protocol
All institutional requests must include a Neural Key in the Authorization header using the Bearer scheme. Keys can be managed in the Developer Nexus.
Header Example
Authorization: Bearer hc_9a2b7...Endpoints
GET/api/v1/markets
Market Discovery
Retrieve a list of active predictive markets with real-time probabilities and volumes.
Parameters
categorystringlimitnumberImplementation
curl -X GET "https://hunch-platform.com/api/v1/markets"GET/api/v1/user/me
Profile Intelligence
Fetch the authenticated user profile, including XP, Grade, and Balance.
Implementation
curl -H "Authorization: Bearer YOUR_KEY" "https://hunch-platform.com/api/v1/user/me"POST/api/v1/order
Execute Intelligence
Place a trade on a specific market outcome using your available balance.
Parameters
marketIduuidoutcomestringamountnumberImplementation
curl -X POST -H "Content-Type: application/json" -d '{"marketId":"...", "outcome":"YES", "amount":10}' "https://hunch-platform.com/api/v1/order"