Skip to main content
GET
https://api.usenotra.com
/
v1
/
posts
/
generate
/
{jobId}
Get async post generation status
curl --request GET \
  --url https://api.usenotra.com/v1/posts/generate/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "job": {
    "id": "<string>",
    "organizationId": "<string>",
    "repositoryIds": [
      "<string>"
    ],
    "brandVoiceId": "<string>",
    "workflowRunId": "<string>",
    "postId": "<string>",
    "error": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "completedAt": "<string>"
  },
  "events": [
    {
      "id": "<string>",
      "jobId": "<string>",
      "message": "<string>",
      "createdAt": "<string>",
      "metadata": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.usenotra.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as Bearer API_KEY.

Path Parameters

jobId
string
required
Minimum string length: 1
Pattern: ^[A-Za-z0-9_-]{1,100}$
Example:

"job_123"

Response

Post generation status fetched successfully

job
object
required
events
object[]
required
Last modified on May 20, 2026