> ## 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/search

> Search US ocean-import trade records for businesses whose name matches a keyword. Returns US importers and their foreign counterparties with role, address, country, total recorded shipments, the date of the latest recorded shipment, and how many alternative names and addresses the same business ships under. Results can be narrowed by side of the trade, by shipment recency and by a minimum shipment count.

**Price:** 1 credit per 10 results



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/importyeti/companies/search
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/search:
    post:
      tags:
        - /importyeti
      summary: /importyeti/companies/search
      description: >-
        Search US ocean-import trade records for businesses whose name matches a
        keyword. Returns US importers and their foreign counterparties with
        role, address, country, total recorded shipments, the date of the latest
        recorded shipment, and how many alternative names and addresses the same
        business ships under. Results can be narrowed by side of the trade, by
        shipment recency and by a minimum shipment count.


        **Price:** 1 credit per 10 results
      operationId: __api_importyeti_companies_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportyetiCompaniesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImportyetiProfile'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImportyetiCompaniesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 140
          minimum: 1
        profile_type:
          $ref: '#/components/schemas/ImportyetiProfileType'
          default: both
        most_recent_shipment:
          $ref: '#/components/schemas/ImportyetiRecency'
          default: any
        min_shipments:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        include_related:
          type: boolean
          default: false
      type: object
      required:
        - keyword
        - count
    ImportyetiProfile:
      properties:
        '@type':
          type: string
          default: ImportyetiProfile
        id:
          type: string
        alias:
          type: string
        role:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        total_shipments:
          anyOf:
            - type: integer
            - type: 'null'
        last_shipment_date:
          anyOf:
            - type: string
            - type: 'null'
        other_addresses_count:
          anyOf:
            - type: integer
            - type: 'null'
        other_names_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - alias
        - role
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImportyetiProfileType:
      type: string
      enum:
        - both
        - company
        - supplier
    ImportyetiRecency:
      type: string
      enum:
        - any
        - 6mo
        - 12mo
    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

````