Quickstart
Get up and running with Clawmato in under 2 minutes. This guide will show you how to make your first context-augmented request.
1. Get your API Key
During the private beta, you'll need an invite code to generate a key. Once approved, you can grab your `sk_live_...` key from the dashboard.
2. Make your first request
Use `curl` to fetch the latest crypto market context.
curl -X GET "https://clawmato.xyz/api/v1/context?focus=crypto&depth=skim" \ -H "Authorization: Bearer sk_live_123456789"
3. Response
You'll receive a JSON object containing the context payload ready for injection.
{
"id": "ctx_8f92j29s",
"timestamp": "2025-11-02T14:30:00Z",
"content": "Bitcoin is trading at $98,400 (+2.1%) on high volume...",
"tokens_used": 45
}Next Step: Integrate this into your OpenAI or Anthropic SDK calls using the System Prompt.