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

# Coins launched on purps.lol

> The most recent coins launched on purps.lol, live and graduated, with curve progress, what they raised and what they have paid holders.



## OpenAPI

````yaml https://purps.lol/api/v1/openapi.json get /launches
openapi: 3.1.0
info:
  title: PURPS API
  version: 1.0.0
  description: >-
    Everything purps.lol can do, as JSON. Read the coin list, a coin's full page
    and the launchpad; launch coins on purps.lol, pump.fun and Robinhood Chain;
    wire an existing pump.fun coin's fees into a strategy. No key, no signup. A
    write is authorised by your own wallet's signature and every transaction is
    signed in your wallet, never by us. Every response is `{ ok: true, data }`
    or `{ ok: false, error }`. Cross-origin requests are allowed from any site.
servers:
  - url: https://purps.lol/api/v1
security: []
tags:
  - name: Coins
    description: Read what the site shows.
  - name: Launch on purps.lol
    description: Launch a coin on purps.lol. Prepare, sign, submit, send, poll.
  - name: Launch on pump.fun
    description: Launch straight on pump.fun with fees wired to a strategy.
  - name: Launch on Robinhood Chain
    description: Launch through Pons on Robinhood Chain.
  - name: Redirect a pump.fun coin
    description: Point an existing pump.fun coin's creator fees at a strategy.
  - name: Manage a coin
    description: Attach a strategy to a coin launched without one. Creator-signed.
  - name: Transactions
    description: Send a signed Solana transaction through our relay and watch it land.
paths:
  /launches:
    get:
      tags:
        - Coins
      summary: Coins launched on purps.lol
      description: >-
        The most recent coins launched on purps.lol, live and graduated, with
        curve progress, what they raised and what they have paid holders.
      operationId: listLaunches
      responses:
        '200':
          description: The launches, newest first.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Launch'
        '429':
          description: Every failure carries the same envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Launch:
      type: object
      properties:
        mint:
          type: string
          description: The coin's mint.
        name:
          type: string
          description: Display name.
        symbol:
          type: string
          description: Ticker.
        imageUrl:
          type: string
          description: Logo URL.
          nullable: true
        status:
          type: string
          description: >-
            `live` on the curve, `migrated` once graduated, `pending` or
            `failed` before that.
          enum:
            - pending
            - live
            - migrated
            - failed
        venue:
          type: string
          description: The launch venue.
          enum:
            - dbc
            - launchlab
        quote:
          type: object
          description: The token the curve trades in.
          properties:
            mint:
              type: string
              description: Quote mint.
            symbol:
              type: string
              description: Quote ticker.
            iconUrl:
              type: string
              description: Quote logo.
              nullable: true
        priceQuote:
          type: number
          description: Last price in the quote token.
          nullable: true
        curvePct:
          type: number
          description: Curve progress, 0 to 100.
          nullable: true
        raisedQuote:
          type: number
          description: Quote raised on the curve.
        devBuyQuote:
          type: number
          description: The creator's own first buy.
        fees:
          type: object
          description: The fee setup.
          properties:
            preset:
              type: string
              description: 'Where fees go: `airdrop`, `split`, `creator` or `strategy`.'
            platformPpm:
              type: integer
              description: Platform fee, parts per million of curve volume.
            creatorPpm:
              type: integer
              description: Creator fee, parts per million of curve volume.
            creatorBps:
              type: integer
              description: Creator fee tier on Meteora, basis points.
              nullable: true
        creatorWallet:
          type: string
          description: Who launched it.
        feeWallet:
          type: string
          description: Where creator fees land.
          nullable: true
        airdrop:
          type: object
          description: Holder airdrops.
          properties:
            potQuote:
              type: number
              description: Accrued toward the next airdrop.
            paidQuote:
              type: number
              description: Paid to holders so far.
            lastAt:
              type: string
              description: When the last one settled.
              nullable: true
        migratedAt:
          type: string
          description: When it graduated.
          nullable: true
        createdAt:
          type: string
          description: When it launched.
        url:
          type: string
          description: The coin's page on purps.lol.
    Error:
      type: object
      properties:
        ok:
          type: boolean
          description: Always false on a failure.
        error:
          type: string
          description: >-
            A short reason in plain words: `coin not found`, `too many
            requests`, `invalid wallet signature`.

````