API.
Online
Getting Started
Follow these interactive steps to quickly start using the API.
For complete documentation, see ReDoc or Swagger UI below.
1
Authenticate with OAuth 2.0
Click the button below to login with OAuth 2.0 and get your access token
Alternative: Use curl command
curl -X POST https://api.itsreal.media/auth/login/ \
-H "Content-Type: application/json" \
-d '{"redirect_uri": "https://api.itsreal.media/"}'
2
Generate API Token
Create an API key for server-to-server communication
Alternative: Use curl command
curl -X POST https://api.itsreal.media/auth/key/ \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
3
Analyze Images
Upload an image to detect if it's AI-generated
Alternative: Use curl command
curl -X POST https://api.itsreal.media/api/v1/analyze/ \
-H "Authorization: Token YOUR_API_TOKEN" \
-F "file=@image.jpg"
Complete API Documentation
Explore all endpoints, schemas, and advanced features with our comprehensive documentation tools