> ## Documentation Index
> Fetch the complete documentation index at: https://docs.classify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Poll a live-classification job

> Returns job status and per-URL results. Each result carries a diag object (strings, paragraphs, chars, top_distance) showing what was extracted. Statuses: classified, no_match, insufficient_content, error. Requires bearer auth.



## OpenAPI

````yaml https://api.classify.ai/openapi.json get /v1/jobs/{job_id}
openapi: 3.1.0
info:
  title: Classify API
  description: >-
    URL-level classification against the ContentGraph index. Priced per URL,
    never per token. URLs already in ContentGraph return classifications inline
    in under 50ms (Lookup). URLs not in the index return status `unknown` with a
    `job_id`; workers fetch, embed, and classify within seconds (Live Classify).
    Poll the job for results. Every live result joins the index.
  version: '1.0'
servers:
  - url: https://api.classify.ai
security: []
paths:
  /v1/jobs/{job_id}:
    get:
      tags:
        - Classification
      summary: Poll a live-classification job
      description: >-
        Returns job status and per-URL results. Each result carries a diag
        object (strings, paragraphs, chars, top_distance) showing what was
        extracted. Statuses: classified, no_match, insufficient_content, error.
        Requires bearer auth.
      operationId: get_job_v1_jobs__job_id__get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: Job with results when done
          content:
            application/json:
              schema: {}
              example:
                job_id: c54e240b-8308-4f08-a73c-124a70f00876
                status: done
                result:
                  - url: https://en.wikipedia.org/wiki/Electric_vehicle
                    status: classified
                    diag:
                      strings: 157
                      paragraphs: 157
                      chars: 95768
                      top_distance: 0.135
                    classifications:
                      - rank: 0
                        distance: '0.13'
                        iab_code: '22'
                        iab_name: Automotive > Auto Type > Green Vehicles
                created_at: '2026-07-07T02:59:13Z'
                completed_at: '2026-07-07T02:59:39Z'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: Classify API key (ck_...)

````