Skip to Content
🚀 Welcome to Ikalas documentation! Discover our complete API and AI functions.
Cheat Sheet

Cheat Sheet

Some useful information to help you navigate the API.

API EndpointDescription
https://ikalas.com/api/v1Base URL for API calls
https://ikalas.com/api/v1/api-llmURL for AI API calls
URLsDescription
https://dashboard.ikalas.com/_apiTo create and retrieve your API keys

Authentication

Include your API key in all requests. Your API key is here: https://dashboard.ikalas.com/_api 

Request and Response Formats

The Ikalas API uses JSON for all requests and responses. Make sure to include the Content-Type: application/json header in your requests.

Example request:

{ "system": "You are a useful assistant", "prompt": "USA independance date", "models": "meta-llama/llama-3.3-70b-instruct:free", "response_format": "default" }

Example response:

{ "success": true, "id": "pos-af29738750", "date": "2025-08-07T16:57:00+00:00", "typeOutput": "json", "result": { "model": "meta-llama/llama-3.3-70b-instruct:free", "choices": [ { "logprobs": null, "finish_reason": "stop", "native_finish_reason": "stop", "index": 0, "message": { "role": "assistant", "content": "YOUR_RESULT_HERE", "refusal": null, "reasoning": null } } ], "credits_spent": null }, "creditsUser": 9688, "uuidLogFunction": "758691cf-4449-4d87-9729-45de94660f49", "ika_conversationId": "e35b1024-05b4-49d2-8e83-9590e2f7b309" }
Last updated on