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

# /dice/companies

> Get full details of a Dice company profile by its GUID or company-profile URL: name, profile URL, description, website, logo, banner, account type, founding year, employee count, office policy, industries, technologies, tech stack, office locations, social media links, benefits, awards, media, and last update.

**Price:** 1 credit

**⚠️ Common errors:** 412: Company profile not found



## OpenAPI

````yaml /openapi/jobs.json post /api/dice/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/dice/companies:
    post:
      tags:
        - /dice
      summary: /dice/companies
      description: >-
        Get full details of a Dice company profile by its GUID or
        company-profile URL: name, profile URL, description, website, logo,
        banner, account type, founding year, employee count, office policy,
        industries, technologies, tech stack, office locations, social media
        links, benefits, awards, media, and last update.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company profile not found
      operationId: __api_dice_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DiceCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DiceCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DiceCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
      type: object
      required:
        - company
    DiceCompany:
      properties:
        '@type':
          type: string
          default: DiceCompany
        id:
          type: string
        legacy_company_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        overview_header:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        account_type:
          anyOf:
            - type: string
            - type: 'null'
        founded:
          anyOf:
            - type: integer
            - type: 'null'
        employee_count:
          anyOf:
            - type: string
            - type: 'null'
        office_policy:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
        technologies:
          items:
            type: string
          type: array
          default: []
        tech_stacks:
          items:
            $ref: '#/components/schemas/DiceTechStack'
          type: array
          default: []
        locations:
          items:
            $ref: '#/components/schemas/DiceCompanyLocation'
          type: array
          default: []
        social_media:
          anyOf:
            - $ref: '#/components/schemas/DiceCompanySocialMedia'
            - type: 'null'
        benefits:
          anyOf:
            - $ref: '#/components/schemas/DiceCompanyBenefits'
            - type: 'null'
        awards:
          items:
            $ref: '#/components/schemas/DiceCompanyAward'
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            type: string
          type: array
          default: []
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DiceTechStack:
      properties:
        '@type':
          type: string
          default: DiceTechStack
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DiceCompanyLocation:
      properties:
        '@type':
          type: string
          default: DiceCompanyLocation
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        is_headquarters:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    DiceCompanySocialMedia:
      properties:
        '@type':
          type: string
          default: DiceCompanySocialMedia
        facebook:
          anyOf:
            - type: string
            - type: 'null'
        instagram:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DiceCompanyBenefits:
      properties:
        '@type':
          type: string
          default: DiceCompanyBenefits
        child_care_parental:
          items:
            type: string
          type: array
          default: []
        diversity_equity_inclusion:
          items:
            type: string
          type: array
          default: []
        financial_retirement:
          items:
            type: string
          type: array
          default: []
        health_wellness:
          items:
            type: string
          type: array
          default: []
        perks_discounts:
          items:
            type: string
          type: array
          default: []
        professional_development:
          items:
            type: string
          type: array
          default: []
        vacation_time_off:
          items:
            type: string
          type: array
          default: []
        work_culture:
          items:
            type: string
          type: array
          default: []
      type: object
    DiceCompanyAward:
      properties:
        '@type':
          type: string
          default: DiceCompanyAward
        name:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````