Skip to main content
GET
/
lifecycle
/
{entityType}
/
{entityId}
/
status
Lifecycle checklist status
curl --request GET \
  --url https://ai.wisepilot.app/api/v1/lifecycle/{entityType}/{entityId}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "entityType": "<string>",
    "entityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lifecycleKey": "<string>",
    "currentStepId": "<string>",
    "currentStepLabel": "<string>",
    "readinessScore": 123,
    "steps": [
      {
        "id": "<string>",
        "label": "<string>",
        "status": "completed",
        "criteria": [
          {
            "type": "<string>",
            "met": true,
            "label": "<string>"
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with cr_ (e.g. cr_a1b2c3...)

Path Parameters

entityType
string
required

Entity type (e.g. blog, ad-creative, cta, nurture-sequence)

entityId
string<uuid>
required

Response

Lifecycle status

success
boolean
required
data
object