← Documentation home
GET
/hyax-api/v1/posts/jobs/:idPost creation job status
Poll this after creating a post in AI mode.
Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.
Request examples
Same request in cURL, Node.js (fetch), and PHP (ext-curl).
curl -X GET 'https://platform.hyax.com/hyax-api/v1/posts/jobs/clx_example_id' \
-H 'Authorization: Bearer YOUR_API_KEY'Example response
Shape varies by data; values are illustrative.
{
"success": true,
"jobId": "post-api-…",
"status": "completed",
"progress": null,
"result": { "postId": "clx…", "title": "Generated title", "imageUrl": null },
"error": null,
"completedAt": "2025-01-15T12:05:00.000Z"
}