Get API Key
Create a Ceramic account for free to get an API key.
Installation
Search
Async Search
Parameters
GitHub
View source code
PyPI
View package
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Official Python SDK for Ceramic
pip install ceramic_ai
from ceramic_ai import Ceramic
client = Ceramic(api_key="YOUR_API_KEY")
response = client.search(query="California rental laws")
print(response)
import asyncio
from ceramic_ai import AsyncCeramic
client = AsyncCeramic(api_key="YOUR_API_KEY")
async def main():
response = await client.search(query="California rental laws")
print(response)
asyncio.run(main())
| Parameter | Type | Description | Default |
|---|---|---|---|
query | string | The search query. | Required |
