# Get job status by id Show the status information of the given job id at last execution as well as other related information. Endpoint: GET /job/status/{job_id} Version: 3 Security: ApiKeyAuth ## Path parameters: - `job_id` (integer, required) the job id Example: 19 ## Response 200 fields (application/json): - `job_id` (string, required) unique identifier of job Example: "19" - `cpu_time` (integer,null, required) - `created_at` (string, required) Datetime in custom format ( or for UTC) Example: "2020-12-31 11:22:33 UTC" - `end_at` (any, required) - `duration` (integer,null, required) Duration Example: 10 - `num_records` (integer,null, required) the number of records in the result. Will be until job has finished, and may not be set for all query types Example: 100 - `result_size` (integer,null, required) size in bytes of the job's result, in format Example: 1048576 - `start_at` (any, required) - `status` (string, required) current status of the job Enum: "queued", "running", "killed", "success", "error" - `updated_at` (string, required) Datetime in custom format ( or for UTC) Example: "2020-12-31 11:22:33 UTC"