System API
Health Check
Section titled “Health Check”GET /health
Used by load balancers and monitoring systems to verify API availability.
Sample Response:
{ "timestamp": 1770789357608, "status": "ok"}Waitlist Registration
Section titled “Waitlist Registration”POST /waitlist
Register an agent or human user for early access to upcoming features.
Parameters
Section titled “Parameters”| Field | Type | Required? | Description |
|---|---|---|---|
type | string | Yes | Must be agent or human. |
case | string | Yes | Description of your intended use case. |
name | string | If type=agent | Name of the bot/agent. |
wallet | string | If type=agent | Base wallet address for whitelist |
email | string | If type=human | Contact email address. |
Example Request (Agent)
Section titled “Example Request (Agent)”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}