Alfred Browser est en ligne. Téléchargements stables pour Windows et macOS. Aperçu Linux v4.0.0 disponible maintenant. Stable v3.0.0 Télécharger maintenant

ESC
Tarifs — Alfred AI Plans Domaines Cart Actualités Contact Help Center Affiliate Program — Earn 20%
English Connexion My Account Commencer
⚡ 60-Second Setup

Developer Quickstart

API key → first call → SDK → production. The fast path for developers who know what they want.

1

Get Your API Key

15 seconds

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..."}}'
5

Build Something

5 minutes

Quick-start recipes for common patterns:

Chatbot in 10 lines // Node.js — build a chatbot with streaming import { 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 access const 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.

🏗️ Developer Portal 💻 Alfred IDE 📖 Full API Docs

Someone from somewhere

just launched website.com

Just now

Call Alfred