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

# /anaconda/packages/search

> Search conda packages across Anaconda.org channels by name, optionally filtered by platform or type

**Price:** 10 credits per 100 results



## OpenAPI

````yaml /openapi/package-registries.json post /api/anaconda/packages/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/anaconda/packages/search:
    post:
      tags:
        - /anaconda
      summary: /anaconda/packages/search
      description: >-
        Search conda packages across Anaconda.org channels by name, optionally
        filtered by platform or type


        **Price:** 10 credits per 100 results
      operationId: __api_anaconda_packages_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnacondaPackagesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AnacondaSearchPackage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AnacondaPackagesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        name:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        platform:
          anyOf:
            - $ref: '#/components/schemas/AnacondaPlatform'
            - type: 'null'
        package_type:
          anyOf:
            - $ref: '#/components/schemas/AnacondaPackageType'
            - type: 'null'
      type: object
      required:
        - name
        - count
    AnacondaSearchPackage:
      properties:
        '@type':
          type: string
          default: AnacondaSearchPackage
        name:
          type: string
        channel:
          type: string
        full_name:
          type: string
          default: ''
        summary:
          anyOf:
            - type: string
            - type: 'null'
        package_types:
          items:
            type: string
          type: array
          default: []
        homepage:
          anyOf:
            - type: string
            - type: 'null'
        latest_version:
          anyOf:
            - type: string
            - type: 'null'
        version_count:
          type: integer
          default: 0
        platforms:
          additionalProperties:
            type: string
          type: object
          default: {}
        conda_platforms:
          items:
            type: string
          type: array
          default: []
        license:
          anyOf:
            - type: string
            - type: 'null'
        license_url:
          anyOf:
            - type: string
            - type: 'null'
        dev_url:
          anyOf:
            - type: string
            - type: 'null'
        doc_url:
          anyOf:
            - type: string
            - type: 'null'
        source_git_url:
          anyOf:
            - type: string
            - type: 'null'
        download_count:
          type: integer
          default: 0
        web_url:
          type: string
          default: ''
      type: object
      required:
        - name
        - channel
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AnacondaPlatform:
      type: string
      enum:
        - noarch
        - linux-64
        - linux-aarch64
        - linux-ppc64le
        - linux-s390x
        - linux-32
        - linux-armv6l
        - linux-armv7l
        - osx-64
        - osx-arm64
        - win-64
        - win-32
        - win-arm64
        - zos-z
    AnacondaPackageType:
      type: string
      enum:
        - conda
        - pypi
        - env
        - ipynb
        - installer
    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

````