GET
/
v1
/
artwork
/
status
/
{jobId}
Get Artwork Generation Status
curl --request GET \
  --url https://api.roastify.app/v1/artwork/status/{jobId} \
  --header 'x-api-key: <api-key>'
{
  "jobId": "run_01234567890abcdef",
  "status": "COMPLETED",
  "artworkUrl": "https://roastify-artwork.s3.us-east-1.amazonaws.com/outreach/01_artwork/1716537600000.jpeg",
  "error": "Failed to generate artwork"
}

Authorizations

x-api-key
string
header
required

The API key to authenticate requests provided by Roastify. A Base or Pro plan is required to use the API.

Path Parameters

jobId
string
required

The job ID returned from the create artwork endpoint

Example:

"run_01234567890abcdef"

Response

200
application/json

Artwork generation status retrieved successfully

The response is of type object.