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

# List Job Openings

> List Job Openings



## OpenAPI

````yaml get /job-openings
openapi: 3.0.1
info:
  title: Amplemarket API V1 Docs
  version: v1
servers:
  - url: https://api.amplemarket.com
security:
  - bearerAuth: []
paths:
  /job-openings:
    get:
      tags:
        - Job Openings
      summary: List Job Openings
      description: List Job Openings
      parameters:
        - name: company_id
          in: query
          required: false
          description: Amplemarket company ID
          schema:
            type: string
        - name: domain
          in: query
          required: false
          description: Company domain
          schema:
            type: string
        - name: linkedin_url
          in: query
          required: false
          description: Company LinkedIn URL
          schema:
            type: string
        - name: person_seniorities[]
          in: query
          schema:
            type: array
            items:
              type: string
              enum:
                - Owner
                - Founder
                - C-Suite
                - Partner
                - VP
                - Head
                - Director
                - Manager
                - Senior
                - Entry
                - Intern
                - Other
                - Non-Manager
                - Founder / Owner
          required: false
          description: Filter by job seniorities
        - name: person_departments[]
          in: query
          schema:
            type: array
            items:
              type: string
          required: false
          description: >-
            Available options: [Supported
            departments](/api-reference/supported-departments)
        - name: person_job_functions[]
          in: query
          schema:
            type: array
            items:
              type: string
          required: false
          description: >-
            Available options: [Supported job
            functions](/api-reference/supported-job-functions)
        - name: only_remote
          in: query
          required: false
          description: Only return remote job openings
          schema:
            type: boolean
        - name: page[size]
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
          required: false
          description: 'Page size (default: 10, max: 100)'
        - name: page[after]
          in: query
          required: false
          description: Cursor for the next page (from _links.next)
          schema:
            type: string
      responses:
        '200':
          description: Successful
          content:
            application/json:
              examples:
                Successful:
                  value:
                    company:
                      id: f22c5f1a-aa8d-4cf9-9fef-98e2acb66427
                      name: Example Inc
                      domain: example.com
                      linkedin_url: https://www.linkedin.com/company/example
                    job_openings:
                      - id: c0ff041d-7b29-4e58-83d8-1c1a7586793a
                        title: Senior Software Engineer
                        url: https://example.com/jobs/123
                        raw_location: Remote - US
                        first_seen_at: '2026-04-01T12:00:00Z'
                        seniorities:
                          - Senior
                        departments:
                          - Engineering & Technical
                        job_functions:
                          - Software Development
                    _links:
                      self:
                        href: /job-openings?domain=example.com&page[size]=10
              schema:
                type: object
                properties:
                  company:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        nullable: true
                        type: string
                      domain:
                        nullable: true
                        type: string
                      linkedin_url:
                        nullable: true
                        type: string
                  job_openings:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        title:
                          nullable: true
                          type: string
                        url:
                          nullable: true
                          type: string
                        raw_location:
                          nullable: true
                          type: string
                        first_seen_at:
                          type: string
                          format: date_time
                          nullable: true
                        seniorities:
                          type: array
                          items:
                            type: string
                        departments:
                          type: array
                          items:
                            type: string
                        job_functions:
                          type: array
                          items:
                            type: string
                  _links:
                    $ref: '#/components/schemas/response_links_object'
        '400':
          description: Bad request
          content:
            application/json:
              examples:
                Missing company lookup:
                  value:
                    _errors:
                      - code: missing_field
                        title: Missing Field
                        detail: >-
                          Must provide one of company_id, domain, or
                          linkedin_url
                    object: error
                Invalid cursor:
                  value:
                    _errors:
                      - code: invalid_parameter
                        title: Invalid Parameter
                        detail: Invalid cursor
                    object: error
              schema:
                $ref: '#/components/schemas/response_errors_object'
        '404':
          description: Not found
          content:
            application/json:
              examples:
                Not found:
                  value:
                    _errors:
                      - code: company_not_found
                        title: Company Not Found
                        detail: Company not found
                    object: error
              schema:
                $ref: '#/components/schemas/response_errors_object'
components:
  schemas:
    response_links_object:
      type: object
      required:
        - self
      additionalProperties: false
      properties:
        self:
          $ref: '#/components/schemas/response_link_object'
        prev:
          $ref: '#/components/schemas/response_link_object'
        next:
          $ref: '#/components/schemas/response_link_object'
    response_errors_object:
      type: object
      required:
        - object
        - _errors
      additionalProperties: false
      properties:
        object:
          type: string
          enum:
            - error
        _errors:
          type: array
          items:
            $ref: '#/components/schemas/response_error_object'
        _links:
          $ref: '#/components/schemas/response_links_object'
    response_link_object:
      type: object
      required:
        - href
      additionalProperties: false
      properties:
        href:
          type: string
    response_error_object:
      type: object
      required:
        - code
        - title
        - detail
      additionalProperties: false
      properties:
        code:
          type: string
        title:
          type: string
        detail:
          type: string
        source:
          type: object
          additionalProperties: false
          properties:
            pointer:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````