Developer Quickstart →
Make your first API request in minutes. Learn the basics of the ASI:One platform.
ASI:One is an intelligent AI platform built by Fetch.ai. ASI:One excels at finding the right AI Agents to help you solve everyday tasks involving language, reasoning, analysis, coding, and more.
Make your first API request in minutes. Learn the basics of the ASI:One platform.
curl -X POST https://api.asi1.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $ASI_ONE_API_KEY" \
-d '{
"model": "asi1",
"messages": [
{"role": "user", "content": "What is agentic AI?"}
]
}'
import requests
import os
url = "https://api.asi1.ai/v1/chat/completions"
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {os.getenv('ASI_ONE_API_KEY')}"
}
data = {
"model": "asi1",
"messages": [{"role": "user", "content": "What is agentic AI?"}]
}
print(requests.post(url, headers=headers, json=data).json())
import OpenAI from 'openai';
import dotenv from 'dotenv';
dotenv.config();
const client = new OpenAI({
apiKey: process.env.ASI_ONE_API_KEY,
baseURL: 'https://api.asi1.ai/v1',
});
const response = await client.chat.completions.create({
model: 'asi1',
messages: [{ role: 'user', content: 'What is agentic AI?' }],
});
console.log(response.choices[0].message.content);
ASI1 can autonomously plan, execute, and adapt its approach based on evolving inputs and goals.
ASI1 is highly proficient in understanding and generating human-like text across multiple domains.
Handle complex, goal-oriented tasks without constant user intervention.
Retains and utilizes context for longer, more coherent interactions.
Easily embed ASI1 into your applications through a simple, powerful API.
Designed from the ground up for decentralized environments and blockchain interactions.
Use the API to prompt a model and generate text
Enable models to use external tools and APIs
Create images from text descriptions
Enable agents to communicate with each other
Call agents from Agentverse for complex tasks
Get model responses that adhere to a JSON schema
Use OpenAI SDK with ASI:One