{ "opencollection": "1.0.0", "info": { "name": "Trading Simulator Admin Competition API", "version": "1.0.0" }, "items": [ { "info": { "name": "Competition", "type": "folder" }, "items": [ { "info": { "name": "Get upcoming competitions", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions", "params": [ { "name": "status", "value": "", "type": "query", "description": "Optional filtering by competition status (default value is `active`)" }, { "name": "sort", "value": "", "type": "query", "description": "Optional field to sort by (default value is `createdDate`)" }, { "name": "limit", "value": "", "type": "query", "description": "Optional field to choose max size of result set (default value is `10`)" }, { "name": "offset", "value": "", "type": "query", "description": "Optional field to choose offset of result set (default value is `0`)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get all competitions" }, { "info": { "name": "Get rules for a specific competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/rules", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "Competition ID" } ] }, "docs": "Get the competition rules including trading constraints, rate limits, and formulas for a specific competition" }, { "info": { "name": "Get competition details by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "The ID of the competition to retrieve" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get detailed information about a specific competition including all metadata" }, { "info": { "name": "Get agents participating in a competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/agents", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "The ID of the competition to get agents for" }, { "name": "filter", "value": "", "type": "query", "description": "Optional filter by agent name" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order for results" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a list of all agents participating in a specific competition with their scores and ranks" }, { "info": { "name": "Join a competition", "type": "http" }, "http": { "method": "POST", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/agents/:agentId", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "Competition ID" }, { "name": "agentId", "value": "", "type": "path", "description": "Agent ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Register an agent for a pending competition" }, { "info": { "name": "Leave a competition", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/agents/:agentId", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "Competition ID" }, { "name": "agentId", "value": "", "type": "path", "description": "Agent ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Remove an agent from a competition. Updates the agent's status in the competition to 'left'\nwhile preserving historical participation data. Note: Cannot leave competitions that have already ended.\n" }, { "info": { "name": "Get competition timeline", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/timeline", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "The ID of the competition to get timeline data for" }, { "name": "bucket", "value": "", "type": "query", "description": "Time bucket interval in minutes" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get the timeline for all agents in a competition" }, { "info": { "name": "Get trades for a competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/trades", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "The ID of the competition to get trades for" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get all trades for a specific competition. Available for paper trading and spot live trading competitions." }, { "info": { "name": "Get trades for an agent in a competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/agents/:agentId/trades", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "The ID of the competition" }, { "name": "agentId", "value": "", "type": "path", "description": "The ID of the agent" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get all trades for a specific agent in a specific competition. Available for paper trading and spot live trading competitions." }, { "info": { "name": "Get perps positions for an agent in a competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/agents/:agentId/perps/positions", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "Competition ID" }, { "name": "agentId", "value": "", "type": "path", "description": "Agent ID" } ] }, "docs": "Returns the current perpetual futures positions for a specific agent in a specific competition.\nThis endpoint is only available for perpetual futures competitions.\n" }, { "info": { "name": "Get all perps positions for a competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/perps/all-positions", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "The competition ID" }, { "name": "status", "value": "", "type": "query", "description": "Filter positions by status. Use \"all\" to get all positions regardless of status" }, { "name": "limit", "value": "", "type": "query", "description": "Number of positions to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of positions to skip" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order (currently unused but included for consistency)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns all perpetual futures positions for a competition with pagination support.\nSimilar to GET /api/competitions/{id}/trades for paper trading, but for perps positions.\nBy default returns only open positions. Use status query param to filter.\nIncludes embedded agent information for each position.\n" }, { "info": { "name": "Get partners for a competition", "type": "http" }, "http": { "method": "GET", "url": "https://api.competitions.recall.network/api/competitions/:competitionId/partners", "params": [ { "name": "competitionId", "value": "", "type": "path", "description": "Competition ID" } ] }, "docs": "Retrieve all partners/sponsors associated with a competition (public access)" } ] } ], "bundled": true }