SDKs
Official libraries and code examples
cURL, Node and Python examples for every endpoint — copy, paste and swap in your API key.
Zero Deps
cURL
Every example works as a plain HTTP call, no library required.
Official
Node.js
A thin wrapper client for server-side JavaScript and TypeScript.
Official
Python
A typed client for scripts, notebooks and backtesting pipelines.
Community
Postman Collection
Import every endpoint into Postman with one click.
cURL
No library required
Every endpoint is a plain HTTPS GET request with a bearer token.
curl https://api.orbistats.com/v1/football/fixtures \
-H "Authorization: Bearer YOUR_API_KEY"
-H "Authorization: Bearer YOUR_API_KEY"
Node.js
const orbistats = require('orbistats')
A minimal client that handles auth headers and JSON parsing for you.
const orbistats = require('orbistats');
const client = new orbistats.Client('YOUR_API_KEY');
const fixtures = await client.football.fixtures({ league: 'premier-league' });
const client = new orbistats.Client('YOUR_API_KEY');
const fixtures = await client.football.fixtures({ league: 'premier-league' });
Python
import orbistats
A typed client, well suited to notebooks and backtesting scripts.
import orbistats
client = orbistats.Client("YOUR_API_KEY")
fixtures = client.football.fixtures(league="premier-league")
client = orbistats.Client("YOUR_API_KEY")
fixtures = client.football.fixtures(league="premier-league")
See Also
Related pages
Explore more of the developer platform.
Get Started
Start free. Upgrade when you need enterprise SLAs.
Self-serve API keys for developers today — dedicated infrastructure, custom feeds and SLAs when you're ready.