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

# List deposit history

> Returns the authenticated account's newest deposit audit entries.



## OpenAPI

````yaml /_generated/openapi.yaml get /v1/deposits
openapi: 3.1.0
info:
  title: Joyride Core HTTP API
  version: 0.1.0
  description: |
    HTTP endpoints served by joyride-core v8 components. Decimal money,
    price, and quantity fields are strings with up to 8 decimal places unless
    noted otherwise.
servers:
  - url: https://joyride.exchange/api
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Public
  - name: Query
  - name: Withdrawals
  - name: Market Data
    description: Publicly accessible market data. No authentication required.
  - name: Account
    description: Account-scoped history and provisioning. Requires a bearer JWT.
  - name: Referrals
    description: Referral-code validation and attribution surfaces.
  - name: AI Chat
    description: >
      AI-powered trading assistant. Uses SIWS (Sign In With Solana)
      authentication

      and JWT sessions. Returns responses as Server-Sent Events (SSE).
paths:
  /v1/deposits:
    get:
      tags:
        - Account
      summary: List deposit history
      description: Returns the authenticated account's newest deposit audit entries.
      operationId: listVaultDeposits
      parameters:
        - name: limit
          in: query
          required: false
          description: Requested number of entries. Defaults to 20 and is capped at 100.
          schema:
            type: integer
            format: int32
            default: 20
        - name: after
          in: query
          required: false
          description: >-
            Exclusive sequence cursor returned as next_cursor. The decimal value
            must fit a non-negative signed 64-bit integer; overflow returns 400.
          schema:
            type: string
            pattern: ^[0-9]+$
      responses:
        '200':
          description: Deposit history
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformDepositHistoryResponse'
        '400':
          description: Malformed keyset cursor
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformError'
        '401':
          $ref: '#/components/responses/PlatformUnauthorized'
        '404':
          $ref: '#/components/responses/PlatformNotFound'
        '502':
          description: Deposit history is temporarily unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformError'
      security:
        - aiAuth: []
components:
  schemas:
    PlatformDepositHistoryResponse:
      type: object
      properties:
        deposits:
          type: array
          items:
            $ref: '#/components/schemas/PlatformDepositHistoryEntry'
        next_cursor:
          type: string
          pattern: ^[0-9]+$
      required:
        - deposits
    PlatformError:
      type: object
      properties:
        error:
          type: string
          description: >-
            Human-readable error message (auth failures may include an `auth_*`
            code prefix)
          example: Instrument not found
      required:
        - error
    PlatformDepositHistoryEntry:
      type: object
      properties:
        externalId:
          type: string
        amount:
          type: string
          example: '25.00000000'
        status:
          type: string
          enum:
            - credited
            - pending
            - needs_review
            - rejected
        createdAt:
          type: string
          format: date-time
      required:
        - amount
        - status
        - createdAt
  responses:
    PlatformUnauthorized:
      description: >
        Authentication required or the bearer token is invalid.

        For JWT-protected endpoints, `error` is prefixed with an auth code:

        `auth_missing`, `auth_missing_or_wallet_query`, `auth_malformed`,
        `auth_expired`, or `auth_signature_invalid`.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/PlatformError'
    PlatformNotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/PlatformError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        SIWS-issued JWT. Admin commands require the `admin` role, `admin:*`, or
        the exact `admin:<type>` scope; admin reads use their documented read
        scope.
    aiAuth:
      type: http
      scheme: bearer
      description: |
        Joyride Core session JWT obtained from the SIWS flow
        (`public/get_nonce` + `public/auth` on the Core trading WebSocket).
        Include as: `Authorization: Bearer <jwt>`

````