> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zapier.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Find an app



## OpenAPI

````yaml get /api/v2/apps/search/
openapi: 3.1.0
info:
  title: Zapier AI Actions API V2
  version: 1.0.0
  description: ''
servers:
  - url: https://actions.zapier.com
security: []
paths:
  /api/v2/apps/search/:
    get:
      tags:
        - apps
      summary: Search Apps
      operationId: api_search_search_apps
      parameters:
        - in: query
          name: query
          schema:
            title: Query
            type: string
          required: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResults_AppSchema_'
      security:
        - AccessPointApiKeyHeader: []
        - AccessPointOAuth: []
components:
  schemas:
    GenericResults_AppSchema_:
      additionalProperties: true
      properties:
        results:
          items:
            $ref: '#/components/schemas/AppSchema'
          title: Results
          type: array
      required:
        - results
      title: GenericResults[AppSchema]
      type: object
    AppSchema:
      properties:
        app:
          description: >

            The key for the app.


            This is used to reference the app throughout AI
            Actions.                     
          title: App
          type: string
        name:
          description: The name of the app.
          title: Name
          type: string
        logo_url:
          description: URL of the logo for the app.
          title: Logo Url
          type: string
        auth_type:
          anyOf:
            - type: string
            - type: 'null'
          description: >

            The type of authentication that the app uses.
                                              
            If this is `null`, then it means that the app does not require
            authentication.
          title: Auth Type
        actions:
          additionalProperties:
            type: integer
          description: |

            The actions available for the app with their respective counts.
          title: Actions
          type: object
      required:
        - app
        - name
        - logo_url
        - auth_type
        - actions
      title: AppSchema
      type: object
  securitySchemes:
    AccessPointApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
    AccessPointOAuth:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: /oauth/authorize/
          tokenUrl: /oauth/token/
          scopes:
            nla:exposed_actions:execute: Run AI Actions
            openid: OpenID Connect scope

````