Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Latest commit

 

History

History
86 lines (71 loc) · 2.64 KB

File metadata and controls

86 lines (71 loc) · 2.64 KB
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

Make Your First API Call

```python Python from incredible_python import Incredible

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! 🎉

What's Next?

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.