Skip to main content

Request

Use the Request endpoint to track the status of asynchronous API calls you've already made.

Get the request status

GET /request/:request_id/status

Get the processing status of an issued asynchronous request, like a page. The request_id in the URL is the v4 UUID returned from the original Hotpot API call.

Headers

NameValue
AuthorizationBearer <your API key>

Response

{
"response": {
"message_request_id":"<hotpot request ID>",
"status": "accepted",
"status_message": "Page queued for delivery!",
"errors": [],
"message_id": "<message ID>"
}
}