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

# /importyeti/companies

> Get one business profile built from US ocean import bills of lading: identity and every alternative name and address it files under, geocoded location hierarchy, website, total and last-12-month shipment counts, estimated shipping spend, average TEU per shipment and per month, first and last shipment dates, the full month-by-month shipment history, HS and HTS commodity breakdowns, product keywords, container types and load types, carriers with SCAC codes and service types, bill types, origin countries, port-to-port trade lanes, notify parties, contact details, trademarks and the UFLPA forced-labour flag.

**Price:** 20 credits

**⚠️ Common errors:** 412: No ImportYeti profile under that id, on either the company or the supplier side



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/importyeti/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/importyeti/companies:
    post:
      tags:
        - /importyeti
      summary: /importyeti/companies
      description: >-
        Get one business profile built from US ocean import bills of lading:
        identity and every alternative name and address it files under, geocoded
        location hierarchy, website, total and last-12-month shipment counts,
        estimated shipping spend, average TEU per shipment and per month, first
        and last shipment dates, the full month-by-month shipment history, HS
        and HTS commodity breakdowns, product keywords, container types and load
        types, carriers with SCAC codes and service types, bill types, origin
        countries, port-to-port trade lanes, notify parties, contact details,
        trademarks and the UFLPA forced-labour flag.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: No ImportYeti profile under that id, on
        either the company or the supplier side
      operationId: __api_importyeti_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportyetiCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImportyetiCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImportyetiCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
      type: object
      required:
        - company
    ImportyetiCompany:
      properties:
        '@type':
          type: string
          default: ImportyetiCompany
        id:
          type: string
        alias:
          type: string
        role:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        also_known_names:
          items:
            type: string
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        address_as_filed:
          anyOf:
            - type: string
            - type: 'null'
        address_url:
          anyOf:
            - type: string
            - type: 'null'
        address_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_url:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            $ref: '#/components/schemas/ImportyetiLocation'
          type: array
          default: []
        website:
          anyOf:
            - type: string
            - type: 'null'
        other_websites:
          items:
            $ref: '#/components/schemas/ImportyetiWebsiteMention'
          type: array
          default: []
        phone:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        total_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12m:
          anyOf:
            - type: integer
            - type: 'null'
        total_shipping_cost:
          anyOf:
            - type: number
            - type: 'null'
        shipping_cost_coverage:
          anyOf:
            - type: number
            - type: 'null'
        avg_teu_per_shipment:
          anyOf:
            - $ref: '#/components/schemas/ImportyetiTeuStats'
            - type: 'null'
        avg_teu_per_month:
          anyOf:
            - $ref: '#/components/schemas/ImportyetiTeuStats'
            - type: 'null'
        first_shipment_date:
          anyOf:
            - type: string
            - type: 'null'
        last_shipment_date:
          anyOf:
            - type: string
            - type: 'null'
        quarterly_growth_months:
          items:
            type: string
          type: array
          default: []
        quarterly_growth_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        quarterly_growth_share:
          anyOf:
            - type: number
            - type: 'null'
        monthly_shipments:
          items:
            $ref: '#/components/schemas/ImportyetiMonthlyPoint'
          type: array
          default: []
        shipping_delays:
          items:
            $ref: '#/components/schemas/ImportyetiShippingDelay'
          type: array
          default: []
        manifest_confidentiality:
          items:
            $ref: '#/components/schemas/ImportyetiConfidentialityPeriod'
          type: array
          default: []
        hs_codes:
          items:
            $ref: '#/components/schemas/ImportyetiHsCode'
          type: array
          default: []
        hts_codes:
          items:
            $ref: '#/components/schemas/ImportyetiHtsCode'
          type: array
          default: []
        product_tags:
          items:
            $ref: '#/components/schemas/ImportyetiProductTag'
          type: array
          default: []
        containers:
          items:
            $ref: '#/components/schemas/ImportyetiContainer'
          type: array
          default: []
        container_load_types:
          items:
            $ref: '#/components/schemas/ImportyetiLoadType'
          type: array
          default: []
        carriers:
          items:
            $ref: '#/components/schemas/ImportyetiCarrier'
          type: array
          default: []
        carriers_per_country:
          items:
            $ref: '#/components/schemas/ImportyetiCountryCarriers'
          type: array
          default: []
        carrier_diversity:
          anyOf:
            - type: number
            - type: 'null'
        carrier_diversity_normalized:
          anyOf:
            - type: number
            - type: 'null'
        bill_types:
          items:
            $ref: '#/components/schemas/ImportyetiBillType'
          type: array
          default: []
        origins:
          items:
            $ref: '#/components/schemas/ImportyetiOrigin'
          type: array
          default: []
        trade_lanes:
          items:
            $ref: '#/components/schemas/ImportyetiTradeLane'
          type: array
          default: []
        notify_parties:
          items:
            $ref: '#/components/schemas/ImportyetiNotifyParty'
          type: array
          default: []
        notify_party_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        notify_party_shipments_share:
          anyOf:
            - type: number
            - type: 'null'
        internal_notify_party_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        internal_notify_party_shipments_share:
          anyOf:
            - type: number
            - type: 'null'
        has_internal_shipments:
          anyOf:
            - type: boolean
            - type: 'null'
        internal_partners_count:
          anyOf:
            - type: integer
            - type: 'null'
        companies_at_address_count:
          anyOf:
            - type: integer
            - type: 'null'
        other_addresses:
          items:
            $ref: '#/components/schemas/ImportyetiOtherAddress'
          type: array
          default: []
        contact_addresses:
          items:
            $ref: '#/components/schemas/ImportyetiContactAddress'
          type: array
          default: []
        notify_party_addresses:
          items:
            $ref: '#/components/schemas/ImportyetiContactAddress'
          type: array
          default: []
        trademarks:
          items:
            $ref: '#/components/schemas/ImportyetiTrademarkHolder'
          type: array
          default: []
        mexico_matches:
          items:
            $ref: '#/components/schemas/ImportyetiDatasetMatch'
          type: array
          default: []
        is_uflpa_flagged:
          anyOf:
            - type: boolean
            - type: 'null'
        imports_per_country_image:
          anyOf:
            - type: string
            - type: 'null'
        top_relationships_image:
          anyOf:
            - type: string
            - type: 'null'
        shipments_over_time_image:
          anyOf:
            - type: string
            - type: 'null'
        product_breakdown_image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - alias
        - role
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImportyetiLocation:
      properties:
        '@type':
          type: string
          default: ImportyetiLocation
        name:
          anyOf:
            - type: string
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ImportyetiWebsiteMention:
      properties:
        '@type':
          type: string
          default: ImportyetiWebsiteMention
        website:
          type: string
        mentions:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - website
    ImportyetiTeuStats:
      properties:
        '@type':
          type: string
          default: ImportyetiTeuStats
        last_12m:
          anyOf:
            - type: number
            - type: 'null'
        last_24m:
          anyOf:
            - type: number
            - type: 'null'
        last_36m:
          anyOf:
            - type: number
            - type: 'null'
        prior_12_24m:
          anyOf:
            - type: number
            - type: 'null'
        prior_24_36m:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    ImportyetiMonthlyPoint:
      properties:
        '@type':
          type: string
          default: ImportyetiMonthlyPoint
        date:
          type: string
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        weight:
          anyOf:
            - type: integer
            - type: 'null'
        teu:
          anyOf:
            - type: integer
            - type: 'null'
        china_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        china_weight:
          anyOf:
            - type: integer
            - type: 'null'
        china_teu:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - date
    ImportyetiShippingDelay:
      properties:
        '@type':
          type: string
          default: ImportyetiShippingDelay
        date:
          type: string
        days:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - date
    ImportyetiConfidentialityPeriod:
      properties:
        '@type':
          type: string
          default: ImportyetiConfidentialityPeriod
        start_date:
          anyOf:
            - type: string
            - type: 'null'
        end_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ImportyetiHsCode:
      properties:
        '@type':
          type: string
          default: ImportyetiHsCode
        hs_code:
          type: string
        parent_hs_code:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        weight:
          anyOf:
            - type: integer
            - type: 'null'
        teu:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - hs_code
    ImportyetiHtsCode:
      properties:
        '@type':
          type: string
          default: ImportyetiHtsCode
        hts_code:
          type: string
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        last_shipment_date:
          anyOf:
            - type: string
            - type: 'null'
        bol_number:
          anyOf:
            - type: string
            - type: 'null'
        product_description:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - hts_code
    ImportyetiProductTag:
      properties:
        '@type':
          type: string
          default: ImportyetiProductTag
        tag:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - tag
    ImportyetiContainer:
      properties:
        '@type':
          type: string
          default: ImportyetiContainer
        container_type:
          anyOf:
            - type: string
            - type: 'null'
        length:
          anyOf:
            - type: string
            - type: 'null'
        group:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12m:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12_24m:
          anyOf:
            - type: integer
            - type: 'null'
        yoy:
          anyOf:
            - type: number
            - type: 'null'
        weight:
          anyOf:
            - type: integer
            - type: 'null'
        teu:
          anyOf:
            - type: integer
            - type: 'null'
        container_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    ImportyetiLoadType:
      properties:
        '@type':
          type: string
          default: ImportyetiLoadType
        load_type:
          type: string
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_share:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - load_type
    ImportyetiCarrier:
      properties:
        '@type':
          type: string
          default: ImportyetiCarrier
        scac_code:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12m:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12_24m:
          anyOf:
            - type: integer
            - type: 'null'
        yoy:
          anyOf:
            - type: number
            - type: 'null'
        service_types:
          items:
            $ref: '#/components/schemas/ImportyetiServiceType'
          type: array
          default: []
      type: object
      required:
        - scac_code
    ImportyetiCountryCarriers:
      properties:
        '@type':
          type: string
          default: ImportyetiCountryCarriers
        country:
          type: string
        carriers:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - country
    ImportyetiBillType:
      properties:
        '@type':
          type: string
          default: ImportyetiBillType
        bill_type:
          type: string
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - bill_type
    ImportyetiOrigin:
      properties:
        '@type':
          type: string
          default: ImportyetiOrigin
        country:
          type: string
        continent:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - country
    ImportyetiTradeLane:
      properties:
        '@type':
          type: string
          default: ImportyetiTradeLane
        origin_port:
          anyOf:
            - type: string
            - type: 'null'
        origin_port_country:
          anyOf:
            - type: string
            - type: 'null'
        origin_port_url:
          anyOf:
            - type: string
            - type: 'null'
        destination_port:
          anyOf:
            - type: string
            - type: 'null'
        destination_port_country:
          anyOf:
            - type: string
            - type: 'null'
        destination_port_region:
          anyOf:
            - type: string
            - type: 'null'
        destination_port_url:
          anyOf:
            - type: string
            - type: 'null'
        destination_port_region_url:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12m:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12_24m:
          anyOf:
            - type: integer
            - type: 'null'
        yoy:
          anyOf:
            - type: number
            - type: 'null'
        weight:
          anyOf:
            - type: integer
            - type: 'null'
        teu:
          anyOf:
            - type: integer
            - type: 'null'
        shipping_cost:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    ImportyetiNotifyParty:
      properties:
        '@type':
          type: string
          default: ImportyetiNotifyParty
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12m:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_12_24m:
          anyOf:
            - type: integer
            - type: 'null'
        yoy:
          anyOf:
            - type: number
            - type: 'null'
        is_internal:
          anyOf:
            - type: boolean
            - type: 'null'
        is_personal_name:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - name
    ImportyetiOtherAddress:
      properties:
        '@type':
          type: string
          default: ImportyetiOtherAddress
        address:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        other_companies_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - address
    ImportyetiContactAddress:
      properties:
        '@type':
          type: string
          default: ImportyetiContactAddress
        address:
          anyOf:
            - type: string
            - type: 'null'
        last_shipment_date:
          anyOf:
            - type: string
            - type: 'null'
        last_shipment_bol:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ImportyetiTrademarkHolder:
      properties:
        '@type':
          type: string
          default: ImportyetiTrademarkHolder
        name:
          type: string
        trademarks_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    ImportyetiDatasetMatch:
      properties:
        '@type':
          type: string
          default: ImportyetiDatasetMatch
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    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
    ImportyetiServiceType:
      properties:
        '@type':
          type: string
          default: ImportyetiServiceType
        service_type:
          type: string
        shipments:
          anyOf:
            - type: integer
            - type: 'null'
        shipments_share:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - service_type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````