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

# Sponsor channels

> List the social accounts publicly associated with a sponsor.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sponsors/{sponsor_id}/channels
openapi: 3.1.0
info:
  title: Upriver API
  description: >-
    A social insights API for ad generation platforms. It provides structured
    signals, like psychographics, behavioral insights, trends, and audience
    language, to help AI models generate relevant, higher-converting ads.
  version: 1.0.0
servers:
  - url: https://api.upriver.ai
    description: Production API server
security: []
tags:
  - name: Brands
  - name: Products
  - name: Creators
  - name: Audience
  - name: Sponsorships
  - name: Trends
  - name: Breakout Topics
  - name: Taxonomy
paths:
  /v1/sponsors/{sponsor_id}/channels:
    get:
      tags:
        - Sponsorships
      summary: Sponsor channels
      description: List the social accounts publicly associated with a sponsor.
      operationId: sponsor_channels_list
      parameters:
        - name: sponsor_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Identifier of the sponsor whose social accounts to list. Sponsor
              identifiers appear in the sponsor_id field of sponsorship results.
            title: Sponsor Id
          description: >-
            Identifier of the sponsor whose social accounts to list. Sponsor
            identifiers appear in the sponsor_id field of sponsorship results.
        - name: platforms
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            description: >-
              Platforms to include (e.g. instagram, tiktok, youtube). If
              omitted, includes all.
            title: Platforms
          description: >-
            Platforms to include (e.g. instagram, tiktok, youtube). If omitted,
            includes all.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Maximum number of accounts to return per page.
            default: 20
            title: Limit
          description: Maximum number of accounts to return per page.
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Pagination cursor from a previous response's next_cursor.
            title: Cursor
          description: Pagination cursor from a previous response's next_cursor.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SponsorChannelsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    SponsorChannelsResponse:
      properties:
        sponsor_id:
          type: string
          title: Sponsor Id
          description: Stable identifier for the sponsor these accounts belong to.
          examples:
            - br_01hzy8k9m4qp7v2wxr3d5abcde
        sponsor_name:
          type: string
          title: Sponsor Name
          description: Name of the sponsor.
          examples:
            - Nike
        results:
          items:
            $ref: '#/components/schemas/SponsorChannel'
          type: array
          title: Results
          description: Social accounts publicly associated with this sponsor.
        total_count:
          type: integer
          title: Total Count
          description: Number of accounts returned on this page.
          examples:
            - 3
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
          description: >-
            Pass as the `cursor` parameter to fetch the next page. Null on the
            last page.
        has_more:
          type: boolean
          title: Has More
          description: True when more accounts are available on a following page.
          default: false
      type: object
      required:
        - sponsor_id
        - sponsor_name
        - total_count
      title: SponsorChannelsResponse
      description: A page of social accounts publicly associated with one sponsor.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SponsorChannel:
      properties:
        channel_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Channel Id
          description: >-
            Stable identifier for this social account. Null when the account has
            not been indexed yet.
          examples:
            - 123e4567-e89b-12d3-a456-426614174000
        platform:
          type: string
          title: Platform
          description: Platform the account is on (e.g. instagram, tiktok, youtube).
          examples:
            - instagram
        handle:
          type: string
          title: Handle
          description: Account handle or channel identifier on the platform.
          examples:
            - nike
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
          description: Public profile URL for the account when available.
          examples:
            - https://www.instagram.com/nike
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
          description: Public display name for the account when available.
          examples:
            - Nike
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Follower Count
          description: Approximate follower or subscriber count when available.
          examples:
            - 302000000
      type: object
      required:
        - platform
        - handle
      title: SponsorChannel
      description: One social account publicly associated with a sponsor.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````