> ## 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.

# /reed/companies

> Get a Reed company profile and its current job listings by company profile ID (or company job-list URL): company name, alias, logo, banner, total job count and the company's jobs.

**Price:** 10 credits per 25 results

**⚠️ Common errors:** 412: Company not found (well-formed but nonexistent profile)



## OpenAPI

````yaml /openapi/jobs.json post /api/reed/companies
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/reed/companies:
    post:
      tags:
        - /reed
      summary: /reed/companies
      description: >-
        Get a Reed company profile and its current job listings by company
        profile ID (or company job-list URL): company name, alias, logo, banner,
        total job count and the company's jobs.


        **Price:** 10 credits per 25 results


        **⚠️ Common errors:** 412: Company not found (well-formed but
        nonexistent profile)
      operationId: __api_reed_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReedCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReedCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReedCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - company
        - count
    ReedCompany:
      properties:
        '@type':
          type: string
          default: ReedCompany
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        company_profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        job_count:
          anyOf:
            - type: integer
            - type: 'null'
        jobs:
          items:
            $ref: '#/components/schemas/ReedSearchJob'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ReedSearchJob:
      properties:
        '@type':
          type: string
          default: ReedSearchJob
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        display_date:
          anyOf:
            - type: string
            - type: 'null'
        expiry_date:
          anyOf:
            - type: string
            - type: 'null'
        location_name:
          anyOf:
            - type: string
            - type: 'null'
        county:
          anyOf:
            - type: string
            - type: 'null'
        remote_option:
          anyOf:
            - type: string
            - type: 'null'
        job_type:
          anyOf:
            - type: integer
            - type: 'null'
        salary_from:
          anyOf:
            - type: number
            - type: 'null'
        salary_to:
          anyOf:
            - type: number
            - type: 'null'
        salary_type:
          anyOf:
            - type: string
            - type: 'null'
        currency_id:
          anyOf:
            - type: integer
            - type: 'null'
        payment_model:
          anyOf:
            - type: string
            - type: 'null'
        taxonomy_level_1:
          anyOf:
            - type: string
            - type: 'null'
        taxonomy_level_2:
          anyOf:
            - type: string
            - type: 'null'
        is_full_time:
          anyOf:
            - type: boolean
            - type: 'null'
        is_part_time:
          anyOf:
            - type: boolean
            - type: 'null'
        is_easy_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        is_promoted:
          anyOf:
            - type: boolean
            - type: 'null'
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        is_training_job:
          anyOf:
            - type: boolean
            - type: 'null'
        is_early_bird:
          anyOf:
            - type: boolean
            - type: 'null'
        is_priority:
          anyOf:
            - type: boolean
            - type: 'null'
        is_top_job:
          anyOf:
            - type: boolean
            - type: 'null'
        is_survey_job:
          anyOf:
            - type: boolean
            - type: 'null'
        is_ats_direct_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        eligible_uk_only:
          anyOf:
            - type: boolean
            - type: 'null'
        external_url:
          anyOf:
            - type: string
            - type: 'null'
        ou_id:
          anyOf:
            - type: integer
            - type: 'null'
        ou_name:
          anyOf:
            - type: string
            - type: 'null'
        ou_type:
          anyOf:
            - type: integer
            - type: 'null'
        ou_tier_id:
          anyOf:
            - type: integer
            - type: 'null'
        ou_url:
          anyOf:
            - type: string
            - type: 'null'
        profile_id:
          anyOf:
            - type: integer
            - type: 'null'
        profile_name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      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

````