Skip to main content

Get your API key

Generate your API key on the Platform.

Free tier

1,000 free credits when you sign up.
1

Try It in the Playground

Open the Playground

No setup required. Send queries to Ceramic Search directly in your browser.
2

Call the API Directly

Make a request directly from your terminal.
curl https://api.ceramic.ai/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "California rental laws"}'
3

Use the SDK

Install the SDK for your language.
pip install ceramic_ai
Make your first request.
from ceramic_ai import Ceramic

client = Ceramic(api_key="YOUR_API_KEY")

response = client.search(query="California rental laws")

print(response)

Response

{
  "requestId": "ae2ebd93-194f-4460-9996-15e3f86b05d8",
  "result": {
    "results": [
      {
        "title": "California Tenant Rights Guide",
        "url": "https://example.com/tenant-rights",
        "description": "Comprehensive guide to California rental laws..."
      }
    ],
    "searchMetadata": {
      "executionTime": 0.097
    },
    "totalResults": 10
  }
}
4

Connect to the MCP Server

Search MCP

Connect Ceramic Search to your AI coding assistants and agents.

Integrations

Use Ceramic Search alongside the tools you already use.

Next steps

API Reference

Explore all available parameters

Best Practices

Get the most out of Ceramic Search