Orbit Search accepts plain English queries and handles the hard parts — query understanding, semantic matching, entity resolution, and ranking — automatically. You send a query likeDocumentation Index
Fetch the complete documentation index at: https://docs.orbitsearch.com/llms.txt
Use this file to discover all available pages before exploring further.
"founders in San Francisco" and receive ranked profile results. There is no query language to learn and no schema to map against; the API infers your intent from the natural language you provide.
The search endpoint
All search requests go to the same endpoint:Authorization header:
Include an
Idempotency-Key header on every search request. If your client retries the request after a network failure, the server uses this key to detect the duplicate and avoid charging credits twice. If you omit the header, the server falls back to the internal request ID — which protects within a single request but cannot deduplicate a later client retry. See API credits for full idempotency behavior.Request fields
Every search request body has three fields:| Field | Type | Required | Description |
|---|---|---|---|
query | string | Yes | A natural language description of who you are looking for |
numUsers | integer | Yes | How many results to return; must be a positive integer, maximum 100 |
searchScope | object | No | Constrains where the search runs; defaults to global if omitted |
userId and searchId are not accepted in developer API requests. SSE (server-sent events) endpoints are not part of the developer API surface.
Search scopes
ThesearchScope field controls which corpus the search runs against. There are three scope shapes.
Global search
OmittingsearchScope or setting type to "global" runs the search across all public Orbit profiles. This is the default for personal API keys and works with any search:read key.
Single directory search
Thedirectory scope limits results to one specific directory by ID. Use this when you want to search a single private corpus you manage.
Multi-directory search
Thedirectories scope searches across multiple directories at once. All directories must belong to the same organization. Duplicate IDs are normalized automatically; archived or missing directories are rejected.
Personal vs. organization API keys
Global search works with both personal and organization API keys. Directory-scoped search — thedirectory and directories scopes — requires an organization API key. Personal API keys are rejected for any scope that targets a private corpus.
For details on creating organization API keys and managing directory access, see Organizations and Search Directories.
Reading profiles from search results
Search results include user IDs you can use to fetch full public profiles. Use theGET /v2/developer/profiles/:id endpoint with the same API key:
profile:read scope and cost 1 credit each. See API credits for details.