🧿Introduction of the Eye- AI API
Authentication
All API requests must include your API key in an Authorization HTTP header as follows:
Authorization: Bearer YOUR_API_KEYExample curl command:
Curl https://api.eye-ai.com/v1/models \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'eye-ai-Organization: YOUR_ORG_ID'Example with the Eye-AI Python package:
import os
import Eye-AI
Eye-AI.organization = "YOUR_ORG_ID"
Eye-AI.api_key = os.getenv("Eye-AI_API_KEY")
Eye-AI.Model.list()Example with the Eye-AI Node.js package:
Last updated
