The Orbit Search API lets you query a global index of public professional profiles using natural-language queries. This guide walks you through every step: getting an API key, running your first search request, reading the response, and fetching a complete profile for any result you get back.Documentation Index
Fetch the complete documentation index at: https://docs.orbitsearch.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
You need an active Orbit account. All requests require aBearer token in the Authorization header. The examples below use $API_BASE as a placeholder for the API base URL you received when signing up.
Steps
Get an API key
Open the Orbit developer dashboard and generate a personal API key with the
search:read and profile:read scopes. Copy the raw sk_orb_... key when it appears.Run a global search
Send a
POST request to the smart search endpoint. The query and numUsers fields are both required.Interpret the search response
A successful search returns a Check the
searchId and a payload.users array. The array may be empty if the index found no matching profiles for your query.X-Developer-API-Credits-Remaining response header to see how many credits you have left after the request. Each successful search costs 2 credits by default. If the search returns no users, the credits are automatically refunded and the header will reflect your full balance.Each object in payload.users contains a userId field. Use this to fetch a full profile in the next step.Fetch a full profile
Pass the A successful profile read returns a stable public profile DTO:The profile DTO is an allowlisted public shape. It does not expose raw contact details, phone numbers, internal moderation metadata, or profile-owner-only fields. Each profile read costs 1 credit by default; failed or not-found reads are refunded automatically.
userId from any search result to GET /v2/developer/profiles/:id to retrieve the complete public profile DTO.Next steps
- Scope your searches to a custom people corpus using Search Directories.
- Learn how to safely rotate your API key in Key Rotation.
- See every error code your application should handle in Error Handling.