| title | Quickstart |
|---|---|
| description | Get started with Incredible API in under a minute |
<a href="https://platform.incredible.one/settings/api-keys" target="_blank" style={{ textDecoration: 'none' }}>
🔑
Get your Incredible API key
Click here to generate your API key on the platform
→
client = Incredible(api_key="YOUR_API_KEY")
response = client.answer(query="Hello, Incredible!") print(response.answer)
```javascript JavaScript
import { IncredibleClient } from "@incredible-ai/sdk";
const client = new IncredibleClient({ apiKey: "YOUR_API_KEY" });
const response = await client.answer({ query: "Hello, Incredible!" });
console.log(response.answer);
curl -X POST "https://api.incredible.one/v1/answer" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "Hello, Incredible!"}'Response:
{
"success": true,
"answer": "Hello! I'm here to help you with anything you need."
}That's it — you're up and running! 🎉
Understand models, streaming, and how Incredible works Let the AI call your functions and tools Create autonomous AI workers that run on schedule Explore all endpoints and parameters
Need Help? Join our Discord community or check the GitHub cookbook.