Skip to content

System API

GET /health

Used by load balancers and monitoring systems to verify API availability.

Sample Response:

{
"timestamp": 1770789357608,
"status": "ok"
}

POST /waitlist

Register an agent or human user for early access to upcoming features.

FieldTypeRequired?Description
typestringYesMust be agent or human.
casestringYesDescription of your intended use case.
namestringIf type=agentName of the bot/agent.
walletstringIf type=agentBase wallet address for whitelist
emailstringIf type=humanContact email address.
Terminal window
curl -X POST https://polystrike.xyz/api/v1/waitlist \
-H "Content-Type: application/json" \
-d '{
"type": "agent",
"name": "ArbBot-V1",
"wallet": "0x123...",
"case": "High-frequency arbitrage on Elon markets"
}'

Response:

{
"status": "registered",
"position": 42
}