# GET /api/v1/jobs/{job}

> Poll a long-running (async) job

- Group: meta
- Tier: R
- Required scope: read:account
- Docs: https://api.inleed.com/reference/meta/list-get

## Description

Returns `{jobId, kind, status, progress, result, error, isTerminal, createdAt, resolvedAt}`. Status walks `queued → running → succeeded|failed`, or `cancelled`; `result` appears once it succeeds and `error` once it fails.

## Path parameters

- `job` — string (required)

## Query parameters

- `id` — string (required). Up to 32 characters.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/v1/jobs/job_01hx8n3k5p7q9r2s4t6v8w0y?id=res_01hx8n3k5p7q9r2s4t6v8w0y20" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "jobId": "example.se",
  "kind": "domain",
  "status": "active",
  "progress": 1,
  "meta": [],
  "result": [],
  "error": [],
  "isTerminal": true,
  "createdAt": "example.se",
  "resolvedAt": "example.se"
}
```

## Errors

- **400**  — codes: invalid_request
- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope, not_owned
- **404** No such resource for this account. — codes: not_found
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

