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

# List invites for a brand

> Returns all invites (active and used/expired) for a brand, ordered by created_at DESC.



## OpenAPI

````yaml /api-reference/openapi.json get /invites
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /invites:
    get:
      tags:
        - Invites
      summary: List invites for a brand
      description: >-
        Returns all invites (active and used/expired) for a brand, ordered by
        created_at DESC.
      parameters:
        - description: Brand ID
          name: brand_id
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of invites
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.InviteListResponse'
        '400':
          description: Missing brand_id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Brand not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.InviteListResponse:
      type: object
      properties:
        count:
          type: integer
          example: 1
        data:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.InviteListItem'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.InviteListItem:
      type: object
      properties:
        created_at:
          type: string
          example: '2026-03-27T12:00:00Z'
        expires_at:
          type: string
          example: '2026-04-03T12:00:00Z'
        id:
          type: string
          example: inv_01HZ9X3Q4R5M6N7P8V2K0W1J
        is_active:
          type: boolean
          example: true
        platform:
          type: string
          example: facebook
        token:
          type: string
          example: a55755cf...
        url:
          type: string
          example: https://api.social-api.ai/invite/a55755cf...
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````