Getting an Agent Scalar Key
Agent Scalar requires a key for production deployments. Keys are tied to specific OpenAPI documents in the Scalar Registry.
Steps
- Go to dashboard.scalar.com/registry
- Upload your OpenAPI document or connect via GitHub Actions for automatic sync
- Navigate to your document
- Create an Agent key
Configuration
Add the key to your API reference configuration:
Scalar.createApiReference('#app', {
sources: [
{
url: 'https://registry.scalar.com/@your-namespace/apis/your-api/latest?format=json',
agent: {
key: 'your-agent-scalar-key',
},
},
],
})
Keeping Documents in Sync
For production, use GitHub Actions to automatically sync your OpenAPI document with the Scalar Registry. This ensures your Agent always has the latest API information.