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

# List Creators

> Returns creators on the campaign with their application status, content pipeline counts, performance metrics, and spend.



## OpenAPI

````yaml GET /campaigns/{campaign_id}/creators
openapi: 3.1.0
info:
  title: Launchpoint Buyer API
  description: The API Launchpoint brands and agencies can use to manage their campaigns
  license:
    name: MIT
    identifier: MIT
  version: 2026-07
servers:
  - url: https://api.launchpoint.sh/2026-07
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Create and manage campaigns, review creators and content, and read
      performance data
paths:
  /campaigns/{campaign_id}/creators:
    get:
      tags:
        - Campaigns
      summary: List creators
      description: >-
        Returns creators on the campaign with their application status, content
        pipeline counts, performance metrics, and spend.
      operationId: listCreators
      parameters:
        - $ref: '#/components/parameters/CampaignId'
        - name: status
          in: query
          description: Filter by application status
          required: false
          schema:
            $ref: '#/components/schemas/CreatorStatus'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/StartingAfter'
      responses:
        '200':
          description: A page of campaign creators
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CampaignCreatorList'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    CampaignId:
      name: campaign_id
      in: path
      description: The campaign ID
      required: true
      schema:
        type: string
        format: uuid
    Limit:
      name: limit
      in: query
      description: Number of items to return per page
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 25
    StartingAfter:
      name: starting_after
      in: query
      description: Opaque pagination cursor from a previous response's `next_cursor`
      required: false
      schema:
        type: string
  schemas:
    CreatorStatus:
      type: string
      description: The creator's application status on the campaign
      enum:
        - applied
        - approved
        - rejected
      example: approved
    CampaignCreatorList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CampaignCreator'
        has_more:
          type: boolean
        next_cursor:
          type:
            - string
            - 'null'
    CampaignCreator:
      type: object
      description: >-
        A creator's participation in the campaign: application status, content
        pipeline, performance, and spend
      properties:
        creator_id:
          type: string
          example: cr_8f14e45fceea
        username:
          type: string
          example: somecreator
        status:
          $ref: '#/components/schemas/CreatorStatus'
        applied_at:
          type: string
          format: date-time
        decided_at:
          type:
            - string
            - 'null'
          format: date-time
          description: When the application was approved or rejected
        content:
          $ref: '#/components/schemas/ContentCounts'
        posts:
          type: integer
          description: Number of live posts
          example: 3
        metrics:
          $ref: '#/components/schemas/EngagementMetrics'
        spend_cents:
          type: integer
          description: Total paid to this creator on this campaign, in cents
          example: 45000
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
          description: The HTTP status code
        message:
          type: string
          description: >-
            Human-readable explanation, naming the offending field where
            applicable
        code:
          type: string
          description: >-
            Machine-readable error code, e.g. `invalid_state_transition`,
            `missing_scope`, `already_reviewed`
          example: invalid_state_transition
    ContentCounts:
      type: object
      description: The creator's content pipeline on this campaign
      properties:
        submitted:
          type: integer
          description: Total submissions, including revisions
          example: 4
        in_review:
          type: integer
          example: 1
        approved:
          type: integer
          example: 3
        rejected:
          type: integer
          example: 0
    EngagementMetrics:
      type: object
      description: Engagement totals across posts
      properties:
        views:
          type: integer
          example: 32000
        likes:
          type: integer
          example: 2100
        comments:
          type: integer
          example: 90
        shares:
          type: integer
          example: 25
        saves:
          type: integer
          example: 40
  responses:
    Unauthorized:
      description: The API key is missing, unknown, or revoked (`unauthenticated`)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: >-
        The resource does not exist or is not visible to this API key
        (`not_found`)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    TooManyRequests:
      description: >-
        The rate limit was exceeded (`rate_limited`). Wait for the number of
        seconds in the `Retry-After` header before retrying.
      headers:
        Retry-After:
          description: Seconds to wait before retrying.
          schema:
            type: integer
        X-RateLimit-Limit:
          description: Requests allowed per minute for this key.
          schema:
            type: integer
        X-RateLimit-Remaining:
          description: Requests remaining in the current window.
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````