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

# Where creator authority stands

> Whether a coin can be steered from outside at all, whether authority is off, on or frozen, who holds it, whether a request is waiting for review, the cooldowns and margin hold running now, and the platform's limits (leverage cap, actions a day, cooldown length, market depth floors, note length). Read it before preparing a change. Nothing here says whether any wallet is a platform admin.



## OpenAPI

````yaml /openapi.json get /coins/{mint}/authority
openapi: 3.1.0
info:
  title: PURPS API
  version: 2.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 Pons; wire an
    existing pump.fun coin's fees into a strategy; steer a coin you own. No key,
    no signup. A launch is one call that returns unsigned transactions: the
    launch transaction can only land with your wallet's signature, and that is
    the proof. The few writes that need a message signature (Pons launches,
    wiring a strategy onto a coin, creator authority) come as a prepare/submit
    pair. 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. Every answer from the API itself carries
    `RateLimit-Limit` and `RateLimit-Policy`; uncached ones (writes, prepare and
    submit, refusals) carry `RateLimit-Remaining` and `RateLimit-Reset` as well.
    The 503 while the API is paused and the 410 on old v1 write addresses carry
    neither.
servers:
  - url: https://purps.lol/api/v2
security: []
tags:
  - name: Coins
    description: Read what the site shows.
  - name: Launch on purps.lol
    description: Launch a coin on purps.lol. Build, sign, send, poll.
  - name: Launch on pump.fun
    description: Launch straight on pump.fun with fees wired to a strategy.
  - name: Launch on Pons
    description: Launch through Pons, the launchpad 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: Creator authority
    description: >-
      Steer a purps.lol coin you own: act on a position, change its strategy,
      ask for authority, or hand the coin on. Every move is signed by the
      owner's wallet and published on the coin's Changes tab.
  - name: Transactions
    description: Send a signed Solana transaction through our relay and watch it land.
paths:
  /coins/{mint}/authority:
    get:
      tags:
        - Creator authority
      summary: Where creator authority stands
      description: >-
        Whether a coin can be steered from outside at all, whether authority is
        off, on or frozen, who holds it, whether a request is waiting for
        review, the cooldowns and margin hold running now, and the platform's
        limits (leverage cap, actions a day, cooldown length, market depth
        floors, note length). Read it before preparing a change. Nothing here
        says whether any wallet is a platform admin.
      operationId: getAuthority
      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 authority state.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Authority'
        '400':
          description: Every failure carries the same envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '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:
    Authority:
      type: object
      properties:
        mint:
          type: string
          description: The coin.
        url:
          type: string
          description: Its page.
        available:
          type: boolean
          description: >-
            Whether this coin can be steered from outside at all: a purps.lol
            launch, not the flagship, with a strategy wired.
        reason:
          type: string
          description: >-
            When not available: why (`this coin is never steered from outside`,
            `not a launchpad coin`, `the coin has no strategy yet`).
          nullable: true
        state:
          type: string
          description: >-
            `off` until the platform turns it on for the coin, `on` while the
            owner may steer it, `frozen` when an admin has stopped everyone.
          enum:
            - 'off'
            - 'on'
            - frozen
        owner:
          type: string
          description: >-
            The wallet that owns the coin: whoever holds its creator rewards.
            The launching wallet until a handover, then whoever it was handed
            to.
          nullable: true
        openToPublic:
          type: boolean
          description: >-
            Whether the platform is accepting requests for creator authority
            right now.
        pendingRequest:
          type: boolean
          description: Whether a request for authority on this coin is waiting for review.
        cooldowns:
          type: array
          description: >-
            Timers still running after a recent change, each `{ key, since,
            until }` with ISO 8601 times. `key` is `MARKET:kind` for one leg
            (e.g. `ETH:leverage`) or a bare kind for the coin as a whole.
          items:
            type: object
        marginHold:
          type: object
          description: >-
            Money parked on the exchange for a re-entry after a close or trim:
            `{ usdc, until }`, `until` null when it has no end. Null when
            nothing is parked.
          nullable: true
        limits:
          type: object
          description: The platform's limits on what an owner may do.
          properties:
            maxLeverage:
              type: integer
              description: The most leverage an owner may set, whatever the market allows.
            actionsPerDay:
              type: integer
              description: Position actions allowed per coin in a rolling day.
            cooldownMinutes:
              type: integer
              description: >-
                How long a market, or the coin, waits after a change before the
                next.
            minDayVolumeUsd:
              type: number
              description: >-
                A market must have traded this much in the last day to be moved
                into.
            minOpenInterestUsd:
              type: number
              description: A market must carry this much open interest to be moved into.
            maxShareOfOiBps:
              type: integer
              description: >-
                A position may be at most this share of the market's open
                interest, in basis points.
            noteLength:
              type: object
              description: >-
                `{ min, max }` characters for the `note` on an action or
                strategy change.
    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`.

````