Skip to main content
Get up and running in minutes with intelligent context from your data.
1

Create an account

Sign up at app.adapter.com.
2

Connect a data source

In the console, go to Connectors and connect to one of your tools. Once connected, click “sync data” and select your desired configuration. This can be changed at any time.
3

Create an API key

Go to Settings → API keys and create a key. Set it in your shell:
export ADAPTER_API_KEY="ak_live_..."
See API keys for scope and rotation details.
4

Wait for ingestion to settle

Ingestion starts immediately and can take a few moments to complete, but the the systems that power search and context are available right away, and will only contine to get more intelligent as more data is ingested.
5

Run your first search

curl https://api.adapter.com/v1/knowledge/search \
  -H "Authorization: Bearer $ADAPTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "q": "pricing discussions with enterprise customers",
    "limit": 5
  }'
A typical response looks like:
{
  "count": 3,
  "results": [
    {
      "evidence_type": "email",
      "score": 0.87,
      "snippet": "Following up on the pricing thread from last week — they pushed back on...",
      "timestamp": "2026-04-21T18:42:11Z"
    }
  ]
}
6

Build context for an LLM (optional)

For agentic use cases, you can get deeper context for reasoning using our context or query endpoints.
curl https://api.adapter.com/v1/knowledge/context \
  -H "Authorization: Bearer $ADAPTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "what do we know about Acme Corp?", "max_tokens": 4000}'

Next

Knowledge endpoints

Search, context, and grounded query.

Evidence and entities

The shape of records you query against.