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

# View wallet activity

> Read-only view of your company's wallet ledger entries.

The ledger lists wallet credits and debits, including:
- Payouts to creators
- Adjustments
- Refunds

**Note:** The API does not support executing payouts for security reasons.




## OpenAPI

````yaml /api-reference/openapi.json get /payouts
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:
  /payouts:
    get:
      tags:
        - Payouts
      summary: View wallet activity
      description: >
        Read-only view of your company's wallet ledger entries.


        The ledger lists wallet credits and debits, including:

        - Payouts to creators

        - Adjustments

        - Refunds


        **Note:** The API does not support executing payouts for security
        reasons.
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
        - in: query
          name: limit
          schema:
            type: integer
            default: 50
            maximum: 200
        - in: query
          name: creatorId
          schema:
            type: string
          description: Narrow results to a creator
        - in: query
          name: contractId
          schema:
            type: string
          description: Narrow results to a contract
        - in: query
          name: status
          schema:
            type: string
            enum:
              - confirmed
              - pending
              - failed
          description: Narrow results by transaction status
        - in: query
          name: reason
          schema:
            type: string
          description: Narrow results by description (e.g., "payout", "adjustment")
        - in: query
          name: fromDate
          schema:
            type: string
            format: date
        - in: query
          name: toDate
          schema:
            type: string
            format: date
      responses:
        '200':
          description: Wallet activity returned successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        amount:
                          type: number
                          description: >-
                            Transaction amount in dollars (negative values are
                            debits)
                        type:
                          type: string
                          enum:
                            - credit
                            - debit
                          description: Type of transaction
                        balanceAfter:
                          type: number
                          nullable: true
                          description: Wallet balance after the transaction (in dollars)
                        description:
                          type: string
                          description: >-
                            Description of the transaction (e.g., "Payout to
                            creator")
                        status:
                          type: string
                          enum:
                            - confirmed
                            - pending
                            - failed
                        contractId:
                          type: string
                          nullable: true
                        creatorId:
                          type: string
                          nullable: true
                        creatorName:
                          type: string
                          nullable: true
                        creatorProfileImageUrl:
                          type: string
                          nullable: true
                        programId:
                          type: string
                          nullable: true
                        createdAt:
                          type: integer
                  page:
                    type: integer
                  total:
                    type: integer
                  summary:
                    type: object
                    properties:
                      totalCredits:
                        type: number
                        description: Total credits in dollars
                      totalDebits:
                        type: number
                        description: Total debits in dollars (absolute value)
                      confirmedCount:
                        type: integer
                      pendingCount:
                        type: integer
                      failedCount:
                        type: integer
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key created in Dashboard → Settings → Developer

````