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

# /greenhouse/jobs/offices

> List the office tree of a company's Greenhouse job board by board token: each office's id, name, location, parent and child office ids, and the departments hiring at that office.

**Price:** 20 credits

**⚠️ Common errors:** 412: Board token does not exist



## OpenAPI

````yaml /openapi/jobs.json post /api/greenhouse/jobs/offices
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/greenhouse/jobs/offices:
    post:
      tags:
        - /greenhouse
      summary: /greenhouse/jobs/offices
      description: >-
        List the office tree of a company's Greenhouse job board by board token:
        each office's id, name, location, parent and child office ids, and the
        departments hiring at that office.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Board token does not exist
      operationId: __api_greenhouse_jobs_offices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GreenhouseJobsOfficesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GreenhouseOffice'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GreenhouseJobsOfficesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        board_token:
          type: string
          minLength: 1
      type: object
      required:
        - board_token
    GreenhouseOffice:
      properties:
        '@type':
          type: string
          default: GreenhouseOffice
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        parent_id:
          anyOf:
            - type: integer
            - type: 'null'
        child_ids:
          items:
            type: integer
          type: array
          default: []
        departments:
          items:
            $ref: '#/components/schemas/GreenhouseDepartmentRef'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GreenhouseDepartmentRef:
      properties:
        '@type':
          type: string
          default: GreenhouseDepartmentRef
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        parent_id:
          anyOf:
            - type: integer
            - type: 'null'
        child_ids:
          items:
            type: integer
          type: array
          default: []
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````