Documentation
Explore guides and examples to get started with Fixtures.
Documentation
Explore our guides and examples to integrate Fixtures into your applications.
Get started
Sign in or create an account to load your API keys and try the examples below.
Quick links
Try it out
Run the following in your terminal to verify your setup:
npm install @fixtures/sdk
Then create a client and make your first request:
const { FixturesClient } = require('@fixtures/sdk');
const client = new FixturesClient({
apiKey: process.env.FIXTURES_API_KEY,
});
const result = await client.events.list();
console.log(result);
Browse by section
| Section | Description |
|---|---|
| Get started | Set up your account and first integration |
| Guides | Step-by-step tutorials and configuration |
| API | Reference and authentication |
| Reference | Config options and environment variables |