API REFERENCE
Synapse API Documentation
Integrate collective intelligence into your platform. The Synapse API provides three core endpoints: Interview, Synthesis, and LRD generation.
ADVERTISEMENT
BASE URL
https://synapse-chi-khaki.vercel.app/apiQUICK START
# Start an interview
curl -X POST https://synapse-chi-khaki.vercel.app/api/interview \
-H "Authorization: Bearer syn_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"issueId": "issue_main_st_bike_lane",
"message": "I think the bike lane will hurt local businesses"
}'
# Get synthesis results
curl https://synapse-chi-khaki.vercel.app/api/synthesis?issueId=issue_main_st_bike_lane \
-H "Authorization: Bearer syn_your_api_key"
# Generate Living Requirement Document
curl https://synapse-chi-khaki.vercel.app/api/lrd?issueId=issue_main_st_bike_lane&format=markdown \
-H "Authorization: Bearer syn_your_api_key"AUTHENTICATION
All API requests require a Bearer token in the Authorization header. Obtain your API key from the Mission Control dashboard.
Authorization: Bearer syn_your_api_key
ENDPOINTS
RATE LIMITS
Community100 req/min
Municipal1,000 req/min
EnterpriseUnlimited
ADVERTISEMENT