Everything you need to integrate AICoreCola agents, skills, and models into your application.
All requests require a Bearer token in the Authorization header. Get your API key from the Dashboard.
Authorization: Bearer acc-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
curl https://api.aicorecola.com/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "core-sonnet",
"messages": [{"role": "user", "content": "Hello!"}]
}'/v1/chatModelSend messages to any CoreMind model. Compatible with standard chat completion format.
{
"model": "core-sonnet",
"messages": [
{ "role": "user", "content": "Hello!" }
],
"max_tokens": 1024
}{
"id": "msg_01abc",
"model": "core-sonnet",
"content": "Hello! How can I help you today?",
"usage": { "input_tokens": 10, "output_tokens": 12 }
}/v1/agents/jarvisAgentRun the JARVIS autonomous agent on a multi-step task. The agent plans, uses tools, and returns a complete result.
{
"task": "Research the top 5 AI companies in 2025 and summarize their products",
"max_steps": 10
}{
"id": "task_02xyz",
"status": "completed",
"result": "# Top 5 AI Companies in 2025\n\n...",
"steps_used": 7,
"cost": 1.00
}/v1/skills/researchSkillDeep web research skill. Searches the web, reads sources, and returns a structured research report.
{
"query": "Latest developments in quantum computing 2025",
"format": "markdown",
"depth": "deep"
}{
"id": "skill_03qrs",
"report": "# Quantum Computing in 2025\n\n...",
"sources": ["https://...", "https://..."],
"cost": 0.50
}/v1/skills/reportSkillGenerate a formatted document (PDF, Word, Excel, Markdown) from content or instructions.
{
"title": "Q4 Sales Report",
"content": "Q4 revenue was $2.4M, up 32% YoY...",
"format": "pdf"
}{
"id": "doc_04abc",
"download_url": "https://api.aicorecola.com/v1/files/doc_04abc.pdf",
"expires_at": "2025-12-01T00:00:00Z",
"cost": 0.50
}