Connect ChatGPT
You can use disburse inside ChatGPT as a Custom GPT Action: ChatGPT calls the disburse REST API directly from an OpenAPI spec we publish, authenticated with your API key. Natural-language queries work out of the box: ChatGPT sends the text and disburse parses it into filters server-side.
Custom GPTs require a ChatGPT Plus, Team, or Enterprise plan.
What you need
- A disburse API key (
sk_live_…) from your dashboard. - The published OpenAPI spec URL:
/openapi.jsonon your web app (e.g.https://app.disburse.dev/openapi.json).
Set it up
- In ChatGPT, open Explore GPTs → Create, then the Configure tab.
- Scroll to Actions and click Create new action.
- Under Schema, click Import from URL and paste your
/openapi.jsonURL. ChatGPT loads the operations (search_people,search_companies,enrich_*,verify_*). - Under Authentication, choose API Key, set Auth Type to Bearer,
and paste your
sk_live_…key. - Save. Test it with a prompt like "Find fintech CFOs in Sydney" or "Enrich sarah@acme.com".
How it works
ChatGPT never sees the filter schema; it just sends your words to the API:
You: "heads of growth at Series B fintechs in Australia"
│
▼ ChatGPT calls POST /v1/search/people { "query": "..." }
disburse parses the text into filters, runs the search, returns resultsThat's the same natural-language path the API and the MCP connector use; disburse does the parsing, so any client that can send JSON works.
ChatGPT vs. the MCP connector
Both let an assistant use disburse; they differ in transport and auth:
| Custom GPT Action (this page) | MCP connector | |
|---|---|---|
| Transport | REST API (/v1/*) via OpenAPI | MCP tools (/mcp) |
| Auth | API key (Bearer) | OAuth or API key |
| Best for | ChatGPT | Claude and other MCP clients |
Troubleshooting
- Import fails / schema errors: ChatGPT's importer is strict about OpenAPI 3.1. If it rejects the spec, re-import or paste the JSON directly.
- 401 Unauthorized: the key is missing or wrong; re-check the Bearer key in the action's Authentication settings.
- Calls hit the wrong environment: the
serversURL baked into/openapi.jsondecides which API is called. Confirm it points at the environment your key belongs to.