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

# Get Job Validation Series Channels

> Objectives and channel names, without the samples.

What a client needs to build its plots. The same names can be read off ``/metadata``, but
only by downloading every sample of both solves -- megabytes to populate a variable
picker.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /jobs/{job_id}/series/channels
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /jobs/{job_id}/series/channels:
    get:
      tags:
        - jobs
      summary: Get Job Validation Series Channels
      description: >-
        Objectives and channel names, without the samples.


        What a client needs to build its plots. The same names can be read off
        ``/metadata``, but

        only by downloading every sample of both solves -- megabytes to populate
        a variable

        picker.
      operationId: get_job_validation_series_channels_jobs__job_id__series_channels_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            description: Job whose validation series to describe
            title: Job Id
          description: Job whose validation series to describe
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
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

````