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

# List all businesses



## OpenAPI

````yaml /openapi.json get /businesses
openapi: 3.0.3
info:
  title: Pocketflows API
  version: 0.0.4
servers:
  - url: https://api.pocketflows.com
    description: Production server
security:
  - HttpBasicAuth: []
paths:
  /businesses:
    get:
      tags:
        - Businesses
      summary: List all businesses
      responses:
        '200':
          description: >-
            A dictionary with a `businesses` property which is an array of
            `Business` objects
          content:
            application/json:
              schema:
                type: object
                properties:
                  businesses:
                    type: array
                    items:
                      $ref: '#/components/schemas/Business'
                    description: An array of businesses
                required:
                  - businesses
components:
  schemas:
    Business:
      type: object
      properties:
        id:
          type: string
          description: The ID of the business
        external_id:
          type: string
          nullable: true
          description: The external ID of the business
        name:
          type: string
          description: The name of the business
        metadata:
          type: object
          additionalProperties: true
          description: Arbitrary metadata associated with this business
        created_at:
          type: string
          description: The date and time the business was created
        website:
          type: string
          nullable: true
          description: The website URL of the business
        disabled_steps:
          type: array
          items:
            type: string
            enum:
              - email
              - sms
          nullable: true
          description: >-
            Steps disabled for this business. If `null`, the business inherits
            the project's `disabled_steps`. If set (including `[]`), this list
            fully overrides the project's setting.
      required:
        - id
        - external_id
        - name
        - metadata
        - created_at
        - website
        - disabled_steps
      title: The Business object
  securitySchemes:
    HttpBasicAuth:
      type: http
      scheme: basic

````