Overview
The API is the pull-based half of Disco’s developer toolkit. Use it to sync Members from a CRM, provision access from a sign-up flow, automate Admin and Manager assignments, or pull basic engagement data without working inside the Admin Area by hand. The API is available on the Enterprise plan only, and only Academy Owners and Admins can create or manage keys. Full endpoint reference and request and response schemas are published as OpenAPI documentation at https://api.production.services.disco.co/v1/docs.Create an API Key
API keys are created and managed in the Admin Area.- Go to Admin Area → Settings → API.
- Click + API Key.
- Enter a Name. Names must be unique within your Academy.
- Optionally set an Expiration Date. Leave it blank if the key should not expire.
- Click Save.
Authenticate API Requests
All requests are made against the base URL: https://api.production.services.disco.co/v1 Authenticate every request by passing the key in the X-Disco-API-Key header. Disco does not accept Authorization or Bearer tokens.Use the API
The API supports the Member and content operations most teams need to automate:- Add or remove Members in your Academy or Programs
- Create magic login links for Members
- Add or remove Admins or Managers in your Academy or Programs
- Invite Members to your Academy or Programs
- List Programs and the Members in those Programs
- List Member Groups and the Members in those Groups
- Manage Member Group membership
- Pull basic engagement data for Members
Delete an API Key
Deleting a key is immediate and cannot be undone.- Go to Admin Area → Settings → API.
- Locate the key in the API Keys table.
- Open the Action menu and click Delete.
Rate Limits
Rate limits are applied per endpoint and per Academy. A request that exceeds the limit returns HTTP 429 with the message Rate Limited. Per-endpoint limits and the maximum number of IDs accepted by bulk endpoints are documented in the OpenAPI spec at https://api.production.services.disco.co/v1/docs.FAQ
Do I need to ask Disco to enable the API?
Do I need to ask Disco to enable the API?
No. If your Academy is on the Enterprise plan, the API settings page is already available in the Admin Area. Non-Enterprise plans do not see the page.
Can I use the API on a non-Enterprise plan?
Can I use the API on a non-Enterprise plan?
No. The API is an Enterprise-only feature. If you need API access, talk to your Disco contact about upgrading.
I keep getting an authentication error. What am I doing wrong?
I keep getting an authentication error. What am I doing wrong?
The most common cause is sending the key in the wrong header. Disco expects X-Disco-API-Key. Clients that default to Authorization: Bearer <token> are rejected. Double-check the header name and confirm you copied the full key value.
Why do list and read endpoints use POST instead of GET?
Why do list and read endpoints use POST instead of GET?
Most endpoints use POST so they can support pagination. Community.get is the only GET endpoint. Treat POST as the default when reading data.
Where do I find the Program ID I need for an API call?
Where do I find the Program ID I need for an API call?
Open the Program in the Admin Area and go to Settings. The ID is shown there under the Advanced section. Use this value in any request that accepts a product_id field.
Can I pull user activity like logins through the API?
Can I pull user activity like logins through the API?
The engagement.list endpoint returns engagement metrics per Member per day, filterable by user IDs and date range up to 120 days. It is the closest thing to a general activity feed. Explicit login events are not exposed.
What happens if a key expires?
What happens if a key expires?
The key stops working on the expiration date. Any integration using it will start receiving authentication errors until you issue and install a new key.