Skip to main content

Overview

The Ordinal API allows you to programmatically create and manage posts, profiles, approvals, labels, and analytics data within your workspace. The API follows REST conventions and uses JSON for request and response bodies.

Base URL

https://app.tryordinal.com/api/v1

Quick Start

Beta Access RequiredThe Ordinal API is currently in beta. To request access message us at [email protected].
1

Generate an API Key

Navigate to your workspace settings and create a new API key. See the Authentication guide for details.
2

Make Your First Request

Use the API key as a Bearer token to authenticate your requests:We recommend testing the Get Workspace endpoint to confirm that your API key is working.
curl -X GET "https://app.tryordinal.com/api/v1/workspace" \
  -H "Authorization: Bearer your_api_key"
Confirm that you see your workspace information in the response.
{
  "id": "your-workspace-uuid",
  "name": "Your Workspace",
  "slug": "your-workspace",
  "timezone": "America/New_York",
  "createdAt": "2025-01-01T00:00:00.000Z"
}
3

Explore Endpoints

Browse the endpoint documentation to discover all available operations for posts, profiles, approvals, and more.

Available Resources

Rate Limiting

API requests are rate limited to ensure fair usage of 100 requests per minute per API key. When you exceed the rate limit, you’ll receive a 429 Too Many Requests response with information about when your quota resets.
{
  "code": "TOO_MANY_REQUESTS",
  "message": "Rate limit of 100 requests per 60s exceeded. Quota resets in 45 seconds"
}
If you need to increase the rate limit, please contact us at [email protected].

Need Help?