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

# List companies

> Returns companies the authenticated user belongs to. Use company `id` (sqid) in subsequent API paths.



## OpenAPI

````yaml /openapi.json get /companies
openapi: 3.1.0
info:
  title: Animo API
  version: 1.1.0
  description: >-
    Animo events platform API. Orchestrate setup and operations — never rebuild
    payments, VAT, invoicing, or form submission ingest. Read
    https://docs.animo.co/for-ai-agents before integrating.
  contact:
    name: Animo support
    email: support@animo.co
    url: https://docs.animo.co
servers:
  - url: https://app.animo.co/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: User
    description: Authenticated user
  - name: Companies
    description: Company context
  - name: Events
    description: Event management
  - name: Ticket types
    description: Ticket types for organizing events
  - name: Orders
    description: Registrations and orders
  - name: Forms
    description: Form definitions
  - name: Activations
    description: Lead-generation activations
  - name: Webhooks
    description: Outbound webhooks (Pro)
paths:
  /companies:
    get:
      tags:
        - Companies
      summary: List companies
      description: >-
        Returns companies the authenticated user belongs to. Use company `id`
        (sqid) in subsequent API paths.
      operationId: listCompanies
      parameters:
        - name: page
          in: query
          schema:
            type: integer
      responses:
        '200':
          description: Paginated company list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Company'
      security:
        - bearerAuth:
            - companies:read
components:
  schemas:
    Company:
      type: object
      properties:
        id:
          type: string
          description: Company sqid — use in API paths
        slug:
          type: string
          description: Public URL slug
        name:
          type: string
        tagline:
          type: string
          nullable: true
        url:
          type: string
          nullable: true
        logo:
          type: string
          nullable: true
        brand_color:
          type: string
        created_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth2 personal access token from User settings → API tokens

````