Skip to main content
GET
/
v1
/
apps
/
{app_id}
/
deploys
/
{deploy_id}
Get deploy status
curl --request GET \
  --url https://api.mixpeek.com/v1/apps/{app_id}/deploys/{deploy_id}
{
  "deploy_id": "<string>",
  "status": "queued",
  "environment": "<string>",
  "source": "<string>",
  "bundle_s3_key": "<string>",
  "message": "<string>",
  "queued_at": "<string>",
  "queued_by": "<string>",
  "error": "<string>",
  "smoke_test": {
    "passed": true,
    "url": "<string>",
    "errors": [],
    "duration_ms": 0,
    "tested_at": "<string>"
  }
}

Documentation Index

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

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

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

Path Parameters

app_id
string
required
deploy_id
string
required

Deploy ID

Response

Successful Response

Status of a specific deploy.

deploy_id
string
required
status
enum<string>
required
Available options:
queued,
building,
complete,
failed
environment
string | null
source
string | null
bundle_s3_key
string | null
message
string | null
queued_at
string | null
queued_by
string | null
error
string | null
smoke_test
SmokeTestResult · object

Result of a post-deploy smoke test.