Skip to main content
GET
/
flink_jobs
/
{job_id}
/
status
Get Flink Job Status
curl --request GET \
  --url https://api.streamkap.com/flink_jobs/{job_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "CREATED",
  "live_status": "<string>",
  "flink_job_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Response

Successful Response

Lightweight status response (no checkpoints/errors).

id
string
required
status
enum<string>
required
Available options:
CREATED,
DEPLOYING,
RUNNING,
FAILED,
CANCELLED,
FINISHED
live_status
string | null