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

# Tokens deployed by a wallet

> Lists mints the wallet has deployed, newest first. Reads from the `tokens_by_creator` ReplacingMergeTree (sourced from `tokens.creator`). Results are hydrated into the same `TokenRow` shape as [POST /tokens/multi](/api-reference/openapi/post/tokens/multi).

When there are no results, the response includes `coverage_note` explaining that creator capture began on 2026-05-26 (Phase 0) — older mints may be missing. See [Data coverage](/concepts/coverage).



## OpenAPI

````yaml /api-reference/openapi.json get /deployer/{wallet}
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:
  /deployer/{wallet}:
    get:
      tags:
        - Wallet intel
      summary: Tokens deployed by a wallet
      description: >-
        Lists mints the wallet has deployed, newest first. Reads from the
        `tokens_by_creator` ReplacingMergeTree (sourced from `tokens.creator`).
        Results are hydrated into the same `TokenRow` shape as [POST
        /tokens/multi](/api-reference/openapi/post/tokens/multi).


        When there are no results, the response includes `coverage_note`
        explaining that creator capture began on 2026-05-26 (Phase 0) — older
        mints may be missing. See [Data coverage](/concepts/coverage).
      operationId: getDeployer
      parameters:
        - name: wallet
          in: path
          required: true
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Tokens deployed by the wallet
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeployerResponse'
        '400':
          description: Wallet is not a valid base58 string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    DeployerResponse:
      type: object
      description: >-
        Tokens deployed by a wallet. `coverage_note` is only present when
        `results` is empty.
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/TokenRow'
          description: Newest mint first. Same shape as `/tokens/multi`.
        coverage_note:
          type:
            - string
            - 'null'
          description: >-
            Set when results is empty. Explains that creator capture began
            2026-05-26 (Phase 0).
        computed_at:
          type: integer
          format: int64
          description: Unix epoch milliseconds.
    ErrorEnvelope:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: INVALID_PARAM
            message:
              type: string
              example: >-
                use pair_address; see /api/v1/pairs?token_address=X to discover
                pools
    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.

````