# Rudder API **Provider:** Rudder **Category:** search **Base URL:** `https://rudder.example.local/rudder/api/latest/` **Auth:** api-key — `X-API-Token: YOUR_API_KEY` **Rate Limit:** 1,000 events/day (free) **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://www.rudder.io ## Description Download OpenAPI specification: openapi.yml Introduction Rudder exposes a REST API, enabling the user to interact with Rudder without using the webapp, for example in scripts or cronjobs. Versioning Each time the API is extended with new features (new functions, new parameter ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://rudder.example.local/rudder/api/latest//api/changeRequests` | List all change requests | | GET | `https://rudder.example.local/rudder/api/latest//archives/export` | Get a ZIP archive of the requested items and their dependencies | | POST | `https://rudder.example.local/rudder/api/latest//archives/import` | Import a ZIP archive of policies into Rudder | | GET | `https://rudder.example.local/rudder/api/latest//branding` | Get branding configuration | | POST | `https://rudder.example.local/rudder/api/latest//branding` | Update web interface customization | | POST | `https://rudder.example.local/rudder/api/latest//branding/reload` | Reload branding file | | DELETE | `https://rudder.example.local/rudder/api/latest//changeRequests/{changeRequestId}` | Decline a request details | | GET | `https://rudder.example.local/rudder/api/latest//changeRequests/{changeRequestId}` | Get a change request details | ## Authentication API key in the request header (X-API-Token) ``` X-API-Token: YOUR_API_KEY ``` ## Sample Request ```bash curl -X GET 'https://rudder.example.local/rudder/api/latest//api/changeRequests' \ -H 'X-API-Token: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Freemium. RudderStack open-source self-hosted free. Cloud: 1,000 events/day free. --- *Source: [API Map](https://apimap.dev/apis/rudder/) — CC BY 4.0*