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

# Callouts for one token

> Active callouts targeting one mint, highest attributed volume first (or newest with `sort=recent`). Requires `md.read`.



## OpenAPI

````yaml https://www.oceanx.trade/api/v1/openapi.json get /api/v1/callouts/token/{mint}
openapi: 3.1.0
info:
  title: OceanX Developer API
  version: 1.0.0
  description: >-
    Public API for the OceanX trading platform. Currently in beta and free to
    use while in beta.


    This spec covers the **spot quote** domain. The wallet **tracker** and
    **perps** domains are documented at https://docs.oceanx.trade/api/overview
    and are not yet described here.
  contact:
    url: https://docs.oceanx.trade
  termsOfService: https://www.oceanx.trade/legal/terms
  license:
    name: Proprietary
    url: https://www.oceanx.trade/legal/terms
servers:
  - url: https://www.oceanx.trade
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Market Data
    description: Read-only OceanX market context sourced and cached by VM producers.
  - name: Spot
    description: >-
      Executable Solana swap quotes off OceanX's own router, and the exit
      checker that reports whether a whole position can be sold.
  - name: Callouts
    description: >-
      Public token callouts — user-posted token calls with live click/volume
      attribution stats. Read-only.
paths:
  /api/v1/callouts/token/{mint}:
    get:
      tags:
        - Callouts
      summary: Callouts for one token
      description: >-
        Active callouts targeting one mint, highest attributed volume first (or
        newest with `sort=recent`). Requires `md.read`.
      operationId: listTokenCallouts
      parameters:
        - name: mint
          in: path
          required: true
          schema:
            type: string
          description: Base58 Solana mint address.
        - name: sort
          in: query
          schema:
            type: string
            enum:
              - top
              - recent
            default: top
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 50
            default: 20
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: A page of callouts for the mint.
          headers:
            X-RateLimit-Limit:
              schema:
                type: integer
              description: Requests allowed per window.
            X-RateLimit-Remaining:
              schema:
                type: integer
              description: Requests left.
            X-RateLimit-Reset:
              schema:
                type: integer
              description: Unix seconds when the window resets.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalloutPage'
        '400':
          description: Failed validation before reaching the engine.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Missing, malformed or revoked API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: The key is valid but lacks the required scope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limited. Honour `Retry-After`.
          headers:
            X-RateLimit-Limit:
              schema:
                type: integer
              description: Requests allowed per window.
            X-RateLimit-Remaining:
              schema:
                type: integer
              description: Requests left.
            X-RateLimit-Reset:
              schema:
                type: integer
              description: Unix seconds when the window resets.
            Retry-After:
              schema:
                type: integer
              description: Seconds to wait.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '503':
          description: The routing engine is unreachable or timed out. Retry.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    CalloutPage:
      type: object
      required:
        - callouts
        - nextCursor
      properties:
        callouts:
          type: array
          items:
            $ref: '#/components/schemas/Callout'
        nextCursor:
          type:
            - string
            - 'null'
          description: Opaque cursor for the next page; null when exhausted.
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              description: Stable machine-readable code. Branch on this, not the message.
              example: no_route
            message:
              type: string
              description: Human-readable detail. May change.
    Callout:
      type: object
      description: >-
        A public token callout: one user's shill post for one mint, with live
        attribution stats. Creators earn a share of platform fees on volume
        their callout drives.
      required:
        - id
        - mint
        - body
        - status
        - createdAt
        - expiresAt
        - creator
      properties:
        id:
          type: string
          description: Short slug; the share URL is /c/{id}.
        mint:
          type: string
          description: Base58 Solana mint the callout targets.
        body:
          type: string
        tokenSymbol:
          type:
            - string
            - 'null'
        tokenName:
          type:
            - string
            - 'null'
        tokenImageUrl:
          type:
            - string
            - 'null'
        priceUsdAtCreate:
          type:
            - number
            - 'null'
          description: >-
            Token price when the callout was posted — baseline for % since
            callout.
        status:
          type: string
          enum:
            - active
            - expired
            - removed
        clickCount:
          type: integer
        traderCount:
          type: integer
          description: Distinct attributed traders.
        attributedVolumeUsd:
          type: number
        earnedUsd:
          type: number
        pointsAwarded:
          type: integer
        createdAt:
          type: string
          format: date-time
        expiresAt:
          type: string
          format: date-time
        creator:
          type: object
          required:
            - id
          properties:
            id:
              type: string
            username:
              type:
                - string
                - 'null'
            displayName:
              type:
                - string
                - 'null'
            avatarUrl:
              type:
                - string
                - 'null'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        An OceanX API key, created in the app under Settings → Developer API.
        Send it as `Authorization: Bearer ox_live_…`. These endpoints require
        the `md.read` scope, which is on every key by default.

````