This guide walks you through the three steps you need to make your first working Orbit Search request: getting an API key, running a smart search, and reading a profile. By the end you’ll have a bearer token, a search result, and a structured profile object — all from the API base URLDocumentation Index
Fetch the complete documentation index at: https://docs.orbitsearch.com/llms.txt
Use this file to discover all available pages before exploring further.
https://api.orbitsearch.com.
Get an API key
Log in to the Orbit developer dashboard and generate a personal API key with the
search:read and profile:read scopes.Copy the raw key when the dashboard shows it. It starts with sk_orb_ and is shown only once.Run a smart search
Use A successful response looks like this:Each object in
POST /v2/social/profiles/searches/smart to search the Orbit index in plain English. Pass your API key as a bearer token. The query and numUsers fields are both required.payload.users includes a userId you can use to fetch the full profile. The response also includes the X-Developer-API-Credits-Remaining header so you can track how many credits you have left.Smart search costs 2 credits per successful request. If the search returns no results or fails, the reservation is refunded and no credits are consumed. Requests that exceed your credit balance return a
402 with code developer_api_credits_insufficient before any search work begins.Read a profile
Take a The profile response contains a structured, public-safe DTO:The profile DTO exposes a public-safe allowlist of fields. It does not include raw contact details, phone numbers, internal moderation metadata, or profile-owner-only fields.
userId from your search results and pass it to GET /v2/developer/profiles/:id. Each profile read costs 1 credit; not-found and failed reads are refunded.