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

# Check a pump.fun coin

> Whether a pump.fun coin's creator fees already point at its PURPS wallet, who its creator is, and whether it is registered here. `feeWallet` is the address its fees must go to.



## OpenAPI

````yaml https://purps.lol/api/v1/openapi.json get /redirects/{mint}
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:
  /redirects/{mint}:
    get:
      tags:
        - Redirect a pump.fun coin
      summary: Check a pump.fun coin
      description: >-
        Whether a pump.fun coin's creator fees already point at its PURPS
        wallet, who its creator is, and whether it is registered here.
        `feeWallet` is the address its fees must go to.
      operationId: getRedirect
      parameters:
        - name: mint
          in: path
          required: true
          description: >-
            The token's mint address (Solana) or contract address (Robinhood
            Chain).
          schema:
            type: string
      responses:
        '200':
          description: The coin's fee status.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Redirect'
        '404':
          description: Every failure carries the same envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Every failure carries the same envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Redirect:
      type: object
      properties:
        mint:
          type: string
          description: The pump.fun coin.
        name:
          type: string
          description: From its metadata.
          nullable: true
        symbol:
          type: string
          description: From its metadata.
          nullable: true
        imageUrl:
          type: string
          description: From its metadata.
          nullable: true
        creator:
          type: string
          description: Its current on-chain creator.
          nullable: true
        feeWallet:
          type: string
          description: The PURPS wallet its fees must be routed to.
        redirected:
          type: boolean
          description: Whether they already are.
        feeShareBps:
          type: integer
          description: How much of the creator fee reaches the strategy, in basis points.
        registered:
          type: boolean
          description: Whether a strategy is registered here.
        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`.

````