Skip to content
SynupAPI
Get an API key
GETapi.synup.com/api/v4/local-post-ideas/idea-job-status

Local idea job status

Returns the async job status for a post idea (used to poll image generation) — the current status and, when ready, the generated image URL.

Requires an API key. Send it as Authorization: API <your-key> — see Getting started.

Parameters

Query

NameTypeRequiredDescription
ideaIdstringrequiredID of the post idea.

Headers

NameTypeRequiredDescription
Synup-VersionstringrequiredAPI version date (YYYY-MM-DD).

Request

Request
curl -X GET 'https://api.synup.com/api/v4/local-post-ideas/idea-job-status?ideaId=' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'

Responses

StatusDescription
200Successful response
401Unauthorized - Invalid or missing API key
Example response (generated from the schema)
{
  "data": {
    "localIdeaJobStatus": {
      "status": "string",
      "imageUrl": "string"
    }
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.localIdeaJobStatusobjectoptional
data.localIdeaJobStatus.statusstringoptional
data.localIdeaJobStatus.imageUrlstringoptional