Skip to main content

Grab your API key

Generate your API key on the Platform.

Free tier

1,000 free credits when you sign up.

Install SDK

pip install ceramic

Make your first request

from ceramic import Ceramic

client = Ceramic(api_key="YOUR_API_KEY")
response = client.search("California rental laws")

print(response)

Response

{
  "results": [
    {
      "title": "California Tenant Rights Guide",
      "url": "https://example.com/tenant-rights",
      "description": "Comprehensive guide to California rental laws...",
      "score": 14.52
    }...
  ],
  "totalResults": 10
}

Next steps