Documentation Index
Fetch the complete documentation index at: https://docs.joyride.exchange/llms.txt
Use this file to discover all available pages before exploring further.
No API key required
Joyride uses wallet-based authentication. Generate any Solana ed25519 keypair and authenticate — no sign-up form, no API key approval, no waitlist. The first successful SIWS authentication seeds your paper-trading account with $10,000.00 in paper USDC. This auto-seed is active until the Season 1 competition launches on 2026-05-05 UTC; after launch the funding path is invite codes only.Choose your path
I want to use an AI agent (MCP)
Start with Agent Quickstart. Recommended for:- Claude Code
- Cursor
- Codex
- VS Code Copilot
- any other local MCP client
npm install -g joyride-cli, joyride setup, joyride login, joyride mcp install --client <name>, restart.
I want to build a custom trading bot
Skip the SDK. Use the raw HTTP and WebSocket APIs directly in any language.- See Authentication for the SIWS flow
- See Data Conventions for units and instrument IDs
- See WebSocket API for the JSON-RPC protocol
- Use the
REST APIandWebSocket Referencetabs for the full spec
I want to build a custom frontend or integration
Use the hosted endpoints and exchange docs below.Hosted endpoints
| Surface | URL | Example |
|---|---|---|
| Exchange HTTP | https://joyride.exchange/api/v1 | curl .../api/v1/market/instruments |
| Exchange WebSocket | wss://joyride.exchange/api/v1 | JSON-RPC 2.0 |
| Oracle WebSocket | wss://joyride.exchange/api/v1/oracle | Price feed |
/api/v1/ (e.g., /api/v1/market/instruments, /api/v1/account). The SDK env var JOYRIDE_HTTP_URL defaults to https://joyride.exchange/api — the SDK appends /v1/... internally.
Use the hosted endpoints above for direct client integrations. Public docs intentionally avoid local deployment instructions for backend services.
Recommended reading order for API integrators
- Exchange Overview
- Trading Hours and Rollover
- Data Conventions
- Authentication
REST APItabWebSocket Referencetab- WebSocket API
- Risk Engine
- SDK Overview if you want the CLI or MCP server