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

# /thomasnet/companies

> Get a Thomasnet B2B supplier/manufacturer profile by numeric id or profile URL: company name, company types (Manufacturer/Distributor/Custom Manufacturer/Service Company), HQ address with coordinates, year founded, employee and annual sales ranges, ownership/diversity status, certifications (ISO 9001, AS9100, ITAR, FDA, etc. with scope and dates), product lines, brands, key personnel, videos, news and social links.

**Price:** 1 credit

**⚠️ Common errors:** 412: Supplier not found (well-formed id with no Thomasnet profile)



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/thomasnet/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/thomasnet/companies:
    post:
      tags:
        - /thomasnet
      summary: /thomasnet/companies
      description: >-
        Get a Thomasnet B2B supplier/manufacturer profile by numeric id or
        profile URL: company name, company types
        (Manufacturer/Distributor/Custom Manufacturer/Service Company), HQ
        address with coordinates, year founded, employee and annual sales
        ranges, ownership/diversity status, certifications (ISO 9001, AS9100,
        ITAR, FDA, etc. with scope and dates), product lines, brands, key
        personnel, videos, news and social links.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Supplier not found (well-formed id with no
        Thomasnet profile)
      operationId: __api_thomasnet_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThomasnetCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ThomasnetCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ThomasnetCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
      type: object
      required:
        - company
    ThomasnetCompany:
      properties:
        '@type':
          type: string
          default: ThomasnetCompany
        id:
          type: string
        name:
          type: string
        company_types:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        description_by_company:
          anyOf:
            - type: string
            - type: 'null'
        year_founded:
          anyOf:
            - type: integer
            - type: 'null'
        employee_range:
          anyOf:
            - type: string
            - type: 'null'
        annual_sales:
          anyOf:
            - type: string
            - type: 'null'
        catalog_type:
          anyOf:
            - type: string
            - type: 'null'
        is_claimed:
          anyOf:
            - type: boolean
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_advertiser:
          anyOf:
            - type: boolean
            - type: 'null'
        is_top_responder:
          anyOf:
            - type: boolean
            - type: 'null'
        is_multi_location:
          anyOf:
            - type: boolean
            - type: 'null'
        tier:
          anyOf:
            - type: string
            - type: 'null'
        main_location_name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        address2:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        state_name:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        county:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        location_types:
          items:
            type: string
          type: array
          default: []
        heading:
          anyOf:
            - $ref: '#/components/schemas/ThomasnetHeading'
            - type: 'null'
        headings:
          items:
            $ref: '#/components/schemas/ThomasnetHeading'
          type: array
          default: []
        ownership:
          items:
            type: string
          type: array
          default: []
        certifications:
          items:
            $ref: '#/components/schemas/ThomasnetCertification'
          type: array
          default: []
        brands:
          items:
            type: string
          type: array
          default: []
        products:
          items:
            $ref: '#/components/schemas/ThomasnetCompanyProduct'
          type: array
          default: []
        families:
          items:
            $ref: '#/components/schemas/ThomasnetFamily'
          type: array
          default: []
        personnel:
          items:
            $ref: '#/components/schemas/ThomasnetPersonnel'
          type: array
          default: []
        social:
          items:
            $ref: '#/components/schemas/ThomasnetSocial'
          type: array
          default: []
        videos:
          items:
            $ref: '#/components/schemas/ThomasnetVideo'
          type: array
          default: []
        news:
          items:
            $ref: '#/components/schemas/ThomasnetNews'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ThomasnetHeading:
      properties:
        '@type':
          type: string
          default: ThomasnetHeading
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        natural_name:
          anyOf:
            - type: string
            - type: 'null'
        family_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ThomasnetCertification:
      properties:
        '@type':
          type: string
          default: ThomasnetCertification
        id:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
        cert_title:
          anyOf:
            - type: string
            - type: 'null'
        cert_type:
          anyOf:
            - type: string
            - type: 'null'
        group:
          anyOf:
            - type: string
            - type: 'null'
        scope:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    ThomasnetCompanyProduct:
      properties:
        '@type':
          type: string
          default: ThomasnetCompanyProduct
        id:
          anyOf:
            - type: string
            - type: 'null'
        item_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        item_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    ThomasnetFamily:
      properties:
        '@type':
          type: string
          default: ThomasnetFamily
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ThomasnetPersonnel:
      properties:
        '@type':
          type: string
          default: ThomasnetPersonnel
        name:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ThomasnetSocial:
      properties:
        '@type':
          type: string
          default: ThomasnetSocial
        social_type:
          anyOf:
            - type: string
            - type: 'null'
        account_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ThomasnetVideo:
      properties:
        '@type':
          type: string
          default: ThomasnetVideo
        id:
          anyOf:
            - type: string
            - type: 'null'
        video_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ThomasnetNews:
      properties:
        '@type':
          type: string
          default: ThomasnetNews
        id:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        pub_date:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          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

````