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

# Read bounded market activity and participants

> Returns recent trades, stakes, exits, and claims plus bounded holder and
active-staker views. Inspect every `*Truncated` flag before treating a
returned array as complete.




## OpenAPI

````yaml /api-reference/retardmarket_openapi.yml get /markets/{marketId}/activity
openapi: 3.0.3
info:
  title: retard.market API
  version: 12.27.0
  description: |
    Attested Robinhood Chain reads for the experimental memecoin launch,
    trading, and staking protocol behind `/retard`. Each market is built around
    a fixed-supply creator memecoin paired with native ETH in a Uniswap v4 pool.
    The API exposes runtime identity, markets, quotes, activity, wallet holdings
    and positions, and funded creator-tip proofs.

    This protocol is experimental. Contracts, economics, API responses, and
    availability may change, and funds may be lost. Verify the runtime contract
    graph and simulate every wallet transaction immediately before signing. Use
    is subject to the VibeChain Terms of Service at
    https://vibechain.com/terms.

    Every endpoint requires a caller-specific VibeChain API key in the
    `API-KEY` header. Create one at
    https://docs.vibechain.com/api-reference/retardmarket-intro.
servers:
  - url: https://build.vibechain.com/api/retard/v1227
security:
  - ApiKeyAuth: []
tags:
  - name: Runtime
    description: Attested deployment identity and readiness
  - name: Markets
    description: Creator markets, quotes, schedules, and bounded activity
  - name: Wallets
    description: Wallet positions, holdings, and activity
  - name: Tips
    description: Safe-funded creator-tip root proofs
  - name: Airdrop
    description: Status of the deliberately parked airdrop feature
paths:
  /markets/{marketId}/activity:
    get:
      tags:
        - Markets
      summary: Read bounded market activity and participants
      description: |
        Returns recent trades, stakes, exits, and claims plus bounded holder and
        active-staker views. Inspect every `*Truncated` flag before treating a
        returned array as complete.
      operationId: getRetardMarketActivity
      parameters:
        - $ref: '#/components/parameters/MarketId'
      responses:
        '200':
          description: Block-pinned market activity tape
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketActivity'
        '400':
          $ref: '#/components/responses/InvalidInput'
        '404':
          $ref: '#/components/responses/MarketNotFound'
        '429':
          $ref: '#/components/responses/ApiKeyOrRateLimit'
        '500':
          $ref: '#/components/responses/InternalError'
        '503':
          $ref: '#/components/responses/Unavailable'
components:
  parameters:
    MarketId:
      in: path
      name: marketId
      required: true
      description: Public numeric market ID
      schema:
        type: integer
        minimum: 0
  schemas:
    MarketActivity:
      type: object
      required:
        - marketId
        - coin
        - activities
        - activitiesTruncated
        - holders
        - holdersTruncated
        - stakers
        - stakersTruncated
        - projectedBlock
        - updatedAt
      properties:
        marketId:
          type: integer
          minimum: 0
        coin:
          $ref: '#/components/schemas/Address'
        activities:
          type: array
          maxItems: 50
          items:
            $ref: '#/components/schemas/Activity'
        activitiesTruncated:
          type: boolean
        holders:
          type: array
          maxItems: 100
          items:
            type: object
            required:
              - wallet
              - balance
            properties:
              wallet:
                $ref: '#/components/schemas/Address'
              balance:
                $ref: '#/components/schemas/IntegerString'
        holdersTruncated:
          type: boolean
        stakers:
          type: array
          maxItems: 100
          items:
            type: object
            required:
              - wallet
              - principal
              - rewardShares
              - supportCredit
              - activePositions
            properties:
              wallet:
                $ref: '#/components/schemas/Address'
              principal:
                $ref: '#/components/schemas/IntegerString'
              rewardShares:
                $ref: '#/components/schemas/IntegerString'
              supportCredit:
                $ref: '#/components/schemas/IntegerString'
              activePositions:
                type: integer
                minimum: 0
        stakersTruncated:
          type: boolean
        projectedBlock:
          type: integer
          minimum: 0
        updatedAt:
          $ref: '#/components/schemas/DateTime'
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
      example: '0x41B13C429675015d32377305D03222CbddB20cA0'
    Activity:
      type: object
      required:
        - kind
        - account
        - nativeAmount
        - coinAmount
        - retardAmount
        - rewardShares
        - supportCredit
        - principalReturned
        - principalSlashed
        - tipsPaid
        - transactionHash
        - blockNumber
        - logIndex
        - executedAt
      properties:
        kind:
          $ref: '#/components/schemas/ActivityKind'
        account:
          $ref: '#/components/schemas/Address'
        nativeAmount:
          $ref: '#/components/schemas/IntegerString'
        coinAmount:
          $ref: '#/components/schemas/IntegerString'
        retardAmount:
          $ref: '#/components/schemas/IntegerString'
        rewardShares:
          $ref: '#/components/schemas/IntegerString'
        supportCredit:
          $ref: '#/components/schemas/IntegerString'
        principalReturned:
          $ref: '#/components/schemas/IntegerString'
        principalSlashed:
          $ref: '#/components/schemas/IntegerString'
        tipsPaid:
          $ref: '#/components/schemas/IntegerString'
        transactionHash:
          $ref: '#/components/schemas/Hash'
        blockNumber:
          $ref: '#/components/schemas/IntegerString'
        logIndex:
          type: integer
          minimum: 0
        executedAt:
          $ref: '#/components/schemas/DateTime'
    IntegerString:
      type: string
      pattern: ^[0-9]+$
      description: Unsigned integer encoded as a decimal string
    DateTime:
      type: string
      format: date-time
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    ApiKeyError:
      allOf:
        - $ref: '#/components/schemas/Error'
        - type: object
          required:
            - docs
          properties:
            error:
              type: string
              enum:
                - API_KEY_REQUIRED_OR_RATE_LIMITED
            docs:
              type: string
              format: uri
    ActivityKind:
      type: string
      enum:
        - BUY
        - SELL
        - STAKE
        - RELOCK
        - EXIT
        - CREATOR_CLAIM
        - STAKER_CLAIM
    Hash:
      type: string
      pattern: ^0x[0-9a-fA-F]{64}$
  responses:
    InvalidInput:
      description: Invalid wallet, market, cursor, limit, side, or amount
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    MarketNotFound:
      description: Market is absent, internal, or retired from public discovery
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ApiKeyOrRateLimit:
      description: API key missing/invalid or the caller allowance is exhausted
      headers:
        Retry-After:
          schema:
            type: integer
          description: Seconds until the current rate window resets
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiKeyError'
    InternalError:
      description: The pinned chain read or simulation could not be completed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unavailable:
      description: Configuration, reader, or proof registry is unavailable
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: Caller-specific VibeChain API key created through `/apikey/create`.

````