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

# Browse creator applications

> Get creator applications to your Canvas programs, with each application's approval status.

An application is a creator's current enrollment in a Canvas program together with the campaign-level approval decision. `status` is `pending` while the application waits for review, `approved` once the creator is accepted, and `rejected` when the creator is turned down. A creator who joined before approvals existed is returned as `approved` with `decidedAt: null`.

Brief-based programs approve creators per brief and are not listed here.




## OpenAPI

````yaml /api-reference/openapi.json get /applications
openapi: 3.0.4
info:
  title: Launchpoint Public API
  version: 1.0.0
  description: >-
    **Private preview.** The Launchpoint Public API is in private preview and
    available only to trusted partners we work with directly. Access is not
    self-serve. Email hi@launchpointhq.com to ask about access.


    REST API for Launchpoint brands and agencies. Use an API key in the
    `x-api-key` header to authenticate.


    ## Requirements

    - Public API access must be enabled for the company. During private preview,
    access is limited to trusted partners.

    - Create and manage API keys in Dashboard → Settings → Developer.


    ## Creator privacy

    - Responses never include creator email addresses. Creator phone numbers are
    null when no number is stored or the workspace does not have access to
    creator contact details.


    ## Rate limits

    - Default: **100 requests per minute** per API key.

    - Approved partner accounts: **400 requests per minute**.

    - Every response includes `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and
    `X-RateLimit-Reset`. Requests over the limit return `429`.


    ## Errors

    - Errors use `{ "error": "<message>" }` with the matching HTTP status. Some
    endpoints also include a `code`.


    ## Timestamps

    - Timestamps are Unix timestamps in milliseconds unless a field says
    otherwise.


    ## Pagination

    - Most list endpoints accept `page` and `limit` and return `{ data, page,
    total }`. Some also return `totalPages`.

    - `scope=company` is the default. A parent agency key can pass
    `scope=agency` on supported routes to include its own data and linked
    brands.
servers:
  - url: https://dashboard.launchpointhq.com/api/v1
    description: Live API server
security:
  - apiKeyAuth: []
tags:
  - name: Deals
    description: Public creator opportunities across Launchpoint
  - name: Programs
    description: Programs and campaign management
  - name: Posts
    description: Posts and social content
  - name: Analytics
    description: KPIs and performance metrics
  - name: Payouts
    description: Payouts, balances, and pending creator funds
  - name: Contracts
    description: Contracts and creator agreements
  - name: Creators
    description: Creator profiles and metrics
  - name: Applications
    description: Creator applications to Canvas programs
  - name: Messages
    description: Read and send creator messages
paths:
  /applications:
    get:
      tags:
        - Applications
      summary: Browse creator applications
      description: >
        Get creator applications to your Canvas programs, with each
        application's approval status.


        An application is a creator's current enrollment in a Canvas program
        together with the campaign-level approval decision. `status` is
        `pending` while the application waits for review, `approved` once the
        creator is accepted, and `rejected` when the creator is turned down. A
        creator who joined before approvals existed is returned as `approved`
        with `decidedAt: null`.


        Brief-based programs approve creators per brief and are not listed here.
      parameters:
        - $ref: '#/components/parameters/ScopeParam'
        - in: query
          name: page
          schema:
            type: integer
            minimum: 1
            default: 1
          description: Pagination page number
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
          description: Results to return per page
        - in: query
          name: programId
          schema:
            type: string
          description: Narrow results to applications for this program
        - in: query
          name: creatorId
          schema:
            type: string
          description: >-
            Narrow results to one creator, using the opaque `id` returned by
            `/creators`
        - in: query
          name: status
          schema:
            type: string
            enum:
              - pending
              - approved
              - rejected
          description: Narrow results to one application status
      responses:
        '200':
          description: Applications returned successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Stable application id
                        programId:
                          type: string
                        programName:
                          type: string
                          nullable: true
                        creatorId:
                          type: string
                          description: >-
                            Opaque creator id, the same value `/creators`
                            returns
                        creatorName:
                          type: string
                        creatorProfileImageUrl:
                          type: string
                          nullable: true
                        handles:
                          type: array
                          description: Social handles linked to the creator
                          items:
                            type: object
                            properties:
                              platform:
                                type: string
                              handle:
                                type: string
                        status:
                          type: string
                          enum:
                            - pending
                            - approved
                            - rejected
                        submittedAt:
                          type: integer
                          description: >-
                            When the creator applied, in Unix milliseconds. Uses
                            the application media time, or the enrollment time
                            when no media was sent.
                        decidedAt:
                          type: integer
                          nullable: true
                          description: >-
                            When the application was approved or rejected, in
                            Unix milliseconds. `null` while pending.
                        applicationVideoUrl:
                          type: string
                          nullable: true
                          description: Video the creator sent with the application, if any
                        applicationThumbnailUrl:
                          type: string
                          nullable: true
                  page:
                    type: integer
                  total:
                    type: integer
                  totalPages:
                    type: integer
components:
  parameters:
    ScopeParam:
      in: query
      name: scope
      required: false
      schema:
        type: string
        enum:
          - company
          - agency
        default: company
      description: >-
        Choose the data scope. `company` (default) limits results to the API key
        company's data. `agency` includes the parent agency and its linked
        brands. `scope=agency` requires a parent agency key; other keys receive
        `403`.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key created in Dashboard → Settings → Developer

````