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

# Redeem an invite link

> Public endpoint (no auth). Validates the invite token and redirects the user
to the platform's OAuth authorization page. On successful OAuth callback,
the account is connected to the invite creator's brand.



## OpenAPI

````yaml /api-reference/openapi.json get /invite/{token}
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:
  /invite/{token}:
    get:
      tags:
        - Invites
      summary: Redeem an invite link
      description: >-
        Public endpoint (no auth). Validates the invite token and redirects the
        user

        to the platform's OAuth authorization page. On successful OAuth
        callback,

        the account is connected to the invite creator's brand.
      parameters:
        - description: Invite token
          name: token
          in: path
          required: true
          schema:
            type: string
      responses:
        '302':
          description: Redirect to platform OAuth
        '404':
          description: Invite not found
          content:
            '*/*':
              schema:
                type: string
        '410':
          description: Invite expired or already used
          content:
            '*/*':
              schema:
                type: string

````