Developer Documentation
Everything you need to integrate Augment AI into your applications. Comprehensive guides, API references, and code examples.
Documentation
Quick Start
Get up and running in 5 minutes
API Reference
Complete API documentation
Code Examples
Ready-to-use code samples
Popular Documentation
Recent Updates
New GPT-4 Turbo Model Available
2024-01-15
Updated Rate Limits for Free Tier
2024-01-12
Python SDK v2.0 Released
2024-01-10
New Webhook Events Added
2024-01-08
Example: Chat Completion
curl -X POST "https://api.augment.ai/v1/chat/completions" \
-H "Authorization: Bearer $AUGMENT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "augment-gpt-4",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Explain machine learning in simple terms"
}
],
"max_tokens": 150,
"temperature": 0.7
}'Still Need Help?
Our developer community and support team are here to help you succeed.