Developers
Build on orbitreach.
A workspace-scoped REST API, a hosted MCP server, and agent-readable docs. One revocable key covers all of it — created in your workspace, never in a separate developer account.
Quickstart
From key to first import in minutes.
Create an API key
In your workspace, open Settings → API and create a key. The orb_ secret is shown once — store it in an environment variable.
Make your first request
List your lead tables to confirm the key works. Every endpoint authenticates the same way.
Automate or connect an agent
Import leads and run local lead searches from your own systems, or add the MCP server to your agent for the full workspace toolset.
# List your lead tables
curl https://orbitreach.io/api/v1/tables \
-H "Authorization: Bearer orb_your_api_key"
# Import a lead
curl -X POST https://orbitreach.io/api/v1/leads \
-H "Authorization: Bearer orb_your_api_key" \
-H "Content-Type: application/json" \
-d '{"tableId":123,"leads":[{"email":"ada@example.com","firstName":"Ada"}]}'# MCP for Codex (~/.codex/config.toml)
[mcp_servers.orbitreach]
url = "https://orbitreach.io/api/mcp"
bearer_token_env_var = "ORBITREACH_API_KEY"For agents
Machine-readable by default.
Public pages answer Accept: text/markdown with a markdown variant, unknown paths return a real 404, and these entry points describe the rest.
Questions while you build?
Write to support@orbitreach.io — real answers from the team that runs the API.