# Get job Retrieves a list of jobs with specified job id. Endpoint: GET /job/show/{job_id} Version: 3 Security: ApiKeyAuth ## Path parameters: - `job_id` (integer, required) the job id Example: 19 ## Response 200 fields (application/json): - `cpu_time` (integer,null, required) - `created_at` (string, required) Datetime in custom format ( or for UTC) Example: "2020-12-31 11:22:33 UTC" - `database` (string,null, required) database name - `duration` (integer,null, required) Duration Example: 10 - `end_at` (any, required) - `hive_result_schema` (string,null, required) the schema for the job's result table - `job_id` (string, required) unique identifier of job Example: "19" - `linked_result_export_job_id` (any, required) - `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 - `priority` (integer, required) job execution priority - `query` (any, required) - `result` (string) ...? - `result_export_target_job_id` (any, required) - `result_size` (integer,null, required) size in bytes of the job's result, in format Example: 1048576 - `retry_limit` (integer, required) automatically retry this many times on failure Example: 3 - `start_at` (any, required) - `status` (string, required) current status of the job Enum: "queued", "running", "killed", "success", "error" - `type` (string, required) Example: "presto" - `updated_at` (string, required) Datetime in custom format ( or for UTC) Example: "2020-12-31 11:22:33 UTC" - `url` (string, required) - `user_name` (string, required) user's full name or email Example: "Treasure Data" - `debug` (object, required) - `debug.cmdout` (string,null, required) - `debug.stderr` (string,null, required) - `organization` (string,null, required) always "null"