For Agents
Programmatically list all change requests, get a zip archive of the requested items and their dependencies. Covers 167 operations with apiKey authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Rudder API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Rudder API.
List all change requests
Get a ZIP archive of the requested items and their dependencies
Import a ZIP archive of policies into Rudder
Update web interface customization
GET STARTED
Use for: I need to all change requests, I want to a zip archive of the requested items and their dependencies, Search for import a zip archive of policies into rudder, Find all web interface customization
Not supported: Does not handle payments, communications, or crm — use for identity and authentication only.
Download OpenAPI specification: [openapi.yml](openapi.yml) **Other documentation sources**: * [Main documentation](https://docs.rudder.io) * [Internal relay API](https://docs.rudder.io/api/relay/) Introduction Rudder exposes a REST API, enabling the user to interact with Rudder without using the webapp, for example, in scripts or cron jobs. Authentication The Rudder REST API uses simple API keys f. The API exposes 167 endpoints secured with apiKey authentication.
Reload branding file
Save a campaign
Patterns agents use Rudder API for, with concrete tasks.
★ Identity and Authentication Operations
Use the Rudder API to perform identity auth operations programmatically. The API provides 167 endpoints covering core functionality including list all change requests, get a zip archive of the requested items and their dependencies, import a zip archive of policies into rudder.
Call GET /api/changeRequests to list all change requests
Automated API Info Management
Automate api info operations by combining multiple Rudder API endpoints. Agents can get a zip archive of the requested items and their dependencies and then import a zip archive of policies into rudder in a single workflow.
Call GET /archives/export to get a zip archive of the requested items and their dependencies, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Rudder API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle apiKey tokens manually.
Search Jentic for 'list all change requests', load the operation schema, and execute with Jentic-managed credentials
167 endpoints — download openapi specification: [openapi.
METHOD
PATH
DESCRIPTION
/api/changeRequests
List all change requests
/archives/export
Get a ZIP archive of the requested items and their dependencies
/archives/import
Import a ZIP archive of policies into Rudder
/branding
Update web interface customization
/branding
Get branding configuration
/branding/reload
Reload branding file
/campaigns
Save a campaign
/campaigns
Get all campaigns details
/api/changeRequests
List all change requests
/archives/export
Get a ZIP archive of the requested items and their dependencies
/archives/import
Import a ZIP archive of policies into Rudder
/branding
Update web interface customization
/branding
Get branding configuration
Three things that make agents converge on Jentic-routed access.
Credential isolation
Rudder API apiKey credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'list all change requests') and Jentic returns the matching Rudder API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Rudder API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Rudder API through Jentic.
What authentication does the Rudder API use?
The Rudder API uses an API key passed in the `X-API-Token` header. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I list all change requests with the Rudder API?
Yes. Use the GET /api/changeRequests endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Rudder API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I list all change requests through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'list all change requests'. Jentic returns the matching Rudder API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Rudder API have?
The Rudder API exposes 167 endpoints covering api info, status, compliance operations.
/branding/reload
Reload branding file
/campaigns
Save a campaign
/campaigns
Get all campaigns details