Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.
/v1/accountsPOST
Authorization
bearerAuth *Bearer <token>
Token in: header
Header Parameters
idempotency-key *string
Min length: 1Max length: 128
Request Bodyapplication/jsonrequired
login *string
Min length: 1Max length: 32
password *string
Min length: 1Max length: 256
server *string
Min length: 1Max length: 160
Response
201 · Account linked
id *string
login *string
server *string
status *"pending" | "active" | "invalid" | "disabled"
createdAt *string
400 · Invalid request
error *object | object
401 · Invalid API key
error *object | object
403 · Insufficient API key scope or connected account slot limit
error *object | object
409 · Account is not active
error *object | object
413 · Request body too large
error *object | object
422 · The broker or terminal rejected the operation
error *object | object
429 · Rate limit exceeded
error *object | object
500 · Unexpected failure
error *object | object
503 · Capacity exhausted, upstream unavailable, or history coverage unsettled
error *object | object
504 · Upstream request timed out
error *object | object
Request example
curl -X POST "https://api.fivesocket.com/v1/accounts" \ -H "idempotency-key: <idempotency-key>" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "login": "string", "password": "string", "server": "string" }'