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

# Pump.fun tokens that graduated

> Pump.fun mints with a `graduated` event in `pump_lifecycle_events`, sorted by graduation timestamp DESC.



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/multi/graduated
openapi: 3.1.0
info:
  title: Dexploit API
  version: 1.0.0
  description: Real-time and historical Solana DEX swap and OHLCV data.
servers:
  - url: https://api.dexploit.dev
    description: Production
security:
  - ApiKeyHeader: []
  - BearerAuth: []
  - ApiKeyQuery: []
paths:
  /tokens/multi/graduated:
    get:
      tags:
        - Tokens
      summary: Pump.fun tokens that graduated
      description: >-
        Pump.fun mints with a `graduated` event in `pump_lifecycle_events`,
        sorted by graduation timestamp DESC.
      operationId: listTokensGraduated
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Graduated tokens
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraduatedListResponse'
components:
  schemas:
    GraduatedListResponse:
      type: object
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/GraduatedEntry'
        computed_at:
          type: integer
    GraduatedEntry:
      allOf:
        - $ref: '#/components/schemas/TokenRow'
        - type: object
          properties:
            graduated_at:
              type: integer
              description: Unix epoch seconds of the graduated lifecycle event.
    TokenRow:
      type: object
      properties:
        mint:
          type: string
        name:
          type:
            - string
            - 'null'
        symbol:
          type:
            - string
            - 'null'
        decimals:
          type: integer
        supply_atomic:
          type: string
          description: u64 as decimal string for JSON safety.
        creator:
          type:
            - string
            - 'null'
          description: Phase 0 strict precedence — null when unknown.
        creator_source:
          type:
            - string
            - 'null'
          enum:
            - pumpfun_event
            - shyft_graphql
            - lp_create_signer
            - metaplex_update_authority
            - first_swap_trader
            - null
        image_url:
          type:
            - string
            - 'null'
        twitter:
          type:
            - string
            - 'null'
        telegram:
          type:
            - string
            - 'null'
        website:
          type:
            - string
            - 'null'
        created_at:
          type: integer
          description: Unix epoch seconds.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Preferred for swaps-api endpoints (`/swaps/*`, `/stats/*`, `/trending`,
        `/pool-events`).
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Required by the OHLCV endpoints (`/api/v1/*`) and accepted by every
        other endpoint. Send `Authorization: Bearer ohlcv_live_sk_<your_key>`.
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: >-
        Browser-friendly alternative to the Bearer header — accepted by every
        endpoint and required for WebSocket from the browser.

````