API Documentation
Download IntelX content by system ID. All requests require a valid API key.
Base URL
https://transcript.website
Authentication
Include your API key in the X-API-Key header or as a Bearer token.
X-API-Key: your_api_key
Rate Limits
Each API key is limited to 1000 requests per minute and 1000 requests per day.
Endpoint
POST /api/intelx
Body parameters (JSON):
- query — IntelX system ID (required)
Example Request
curl -X POST "https://transcript.website/api/intelx" \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "system_id_here"}' \
--output intelx_download.txt
Responses
Successful requests return a downloadable file. Errors return JSON:
{
"error": "invalid_api_key",
"message": "Invalid API key."
}