Documentation Index
Fetch the complete documentation index at: https://docs.hypermodel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Your API key for authentication
Path Parameters
The query ID returned from the create query endpoint
Response Fields
The unique query identifier
Current status: pending, processing, completed, or failed
Destination configuration for the queryShow Destination Properties
Destination type: URL, Snowflake, Sheets, or Clay
The destination URL (for URL type destinations)
Error message if status is failed, otherwise null
ISO 8601 timestamp when query was created
ISO 8601 timestamp when query was last updated
curl -X GET https://api.hypermodel.ai/api/v1/query/query_1234567890_abc123 \
-H "X-API-Key: your-api-key"
{
"id": "query_1234567890_abc123",
"status": "completed",
"destination": {
"type": "URL",
"url": "https://webhook.site/your-unique-id"
},
"error": null,
"createdAt": "2025-01-01T00:00:00Z",
"updatedAt": "2025-01-01T00:01:00Z"
}
Status Values
Pending
Query is queued for processing
Processing
Query is currently being processed
Completed
Query completed successfully
Failed
Query failed with an error