F
Feynman AI

Feynman AI API

Integrate the power of Feynman AI into your applications with our comprehensive API.

API Reference

Authentication

All API requests require authentication using an API key. You can obtain an API key from your Feynman AI dashboard.

HTTP Request Header

Authorization: Bearer YOUR_API_KEY

Base URL

https://api.feynmanai.com/v1

API Explorer

Test our API endpoints directly from your browser. Select an endpoint to see request parameters and response format.

POST /explain

Explains a concept using the Feynman technique at the specified difficulty level.

Request Body
{
  "concept": "quantum computing",
  "level": "beginner",
  "format": "text"
}
Response
{
  "explanation": "Quantum computing is like having a super-powerful calculator...",
  "key_points": [
    "Quantum computers use qubits instead of bits",
    "They can process multiple possibilities simultaneously",
    "Still in early stages of development"
  ],
  "request_id": "req_123456789"
}
Code Examples
curl -X POST https://api.feynmanai.com/v1/explain \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "concept": "quantum computing",
    "level": "beginner",
    "format": "text"
  }'

Rate Limits

API rate limits vary by plan:

  • Starter: 1,000 requests per month, max 10 requests per minute
  • Pro: 50,000 requests per month, max 60 requests per minute
  • Enterprise: Custom limits based on your needs

Need Help?

For more detailed information, check out our documentation or contact our support team.