Sign up or log in, then grab your API key from the developer portal.
cURL# Register (or just log in at gositeme.com)
curl -X POST https://gositeme.com/api/auth.php \
-H "Content-Type: application/json" \
-d '{"action":"register","email":"you@example.com","password":"secure123"}'# Response includes your API key
{"success": true, "api_key": "sk-abc123..."}
2
Make Your First Call
15 seconds
Use any HTTP client. Here's calling a tool — we have 13,000+ available:
cURL
curl -X POST https://gositeme.com/api/tools.php \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"tool":"summarize_text","input":{"text":"Alfred AI is a full-stack platform..."}}'
JavaScriptconst res = await fetch('https://gositeme.com/api/tools.php', {
method: 'POST',
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
tool: 'summarize_text',
input: { text: 'Alfred AI is a full-stack platform...' }
})
});
const data = await res.json();
Pythonimport requests
resp = requests.post("https://gositeme.com/api/tools.php", json={
"tool": "summarize_text",
"input": {"text": "Alfred AI is a full-stack platform..."}
}, headers={"Authorization": f"Bearer {api_key}"})
data = resp.json()
Chatbot in 10 lines// Node.js — build a chatbot with streamingimport { Alfred } from'@gositeme/alfred-sdk';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const stream = await alfred.chat.stream({
messages: [{ role: 'user', content: 'Explain quantum computing' }],
model: 'gpt-4o'
});
for await (const chunk of stream) {
process.stdout.write(chunk.text);
}
Deploy an Agent// Create a custom agent with tool accessconst agent = await alfred.agents.create({
name: 'Research Assistant',
instructions: 'You research topics and provide comprehensive summaries.',
tools: ['web_search', 'summarize_text', 'extract_data'],
model: 'gpt-4o'
});
const result = await agent.run('Research the latest in quantum computing breakthroughs');
console.log(result.output);
Ready to Build?
13,000+ tools. 17 AI engines. Voice, vision, agents, fleets. Everything you need.
Someone from somewhere
just launched website.com
Just now