> ## 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 collaborators on an Instagram post

> Returns the collaborators invited on a co-authored Instagram post and the state of each invite (accepted, pending, declined). Readable only by the account that published the media: Meta scopes co-authored media data to the publisher, so a collaborating account cannot read this edge. Collaborators can only be invited when the post is created (platform_data.collaborators); Instagram exposes no API to add one to an already-published post.



## OpenAPI

````yaml /api-reference/openapi.json get /platforms/instagram/accounts/{id}/media/{mediaId}/collaborators
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:
  /platforms/instagram/accounts/{id}/media/{mediaId}/collaborators:
    get:
      tags:
        - Instagram
      summary: List collaborators on an Instagram post
      description: >-
        Returns the collaborators invited on a co-authored Instagram post and
        the state of each invite (accepted, pending, declined). Readable only by
        the account that published the media: Meta scopes co-authored media data
        to the publisher, so a collaborating account cannot read this edge.
        Collaborators can only be invited when the post is created
        (platform_data.collaborators); Instagram exposes no API to add one to an
        already-published post.
      parameters:
        - example: acc_01HZ9X3Q4R5M6N7P8V2K0W1J
          description: Connected account ID (must be the publishing account)
          name: id
          in: path
          required: true
          schema:
            type: string
        - example: '17895695668004550'
          description: Instagram media ID
          name: mediaId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Collaborators and invite status
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/api_endpoints.InstagramCollaboratorsResponse
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Account or media not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '501':
          description: Platform does not support collaborators
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '502':
          description: Upstream Instagram API error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.InstagramCollaboratorsResponse:
      type: object
      properties:
        count:
          type: integer
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/social-api_ai_core_api_connectors_base.Collaborator
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    social-api_ai_core_api_connectors_base.Collaborator:
      type: object
      properties:
        id:
          type: string
          example: '17841405793187218'
        status:
          type: string
          example: pending
        username:
          type: string
          example: janesmith
    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

````