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

# Get onrampnoahpayments



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /onramp/noah/payments
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /onramp/noah/payments:
    get:
      tags:
        - onramp
      parameters:
        - schema:
            type: string
            format: uuid
          required: false
          name: cursor
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: Customer resources
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/OnrampPayment'
                  nextCursor:
                    type: string
                    format: uuid
                required:
                  - items
                additionalProperties: false
        '400':
          description: Invalid customer intent
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '401':
          description: Invalid or expired browser bearer
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '403':
          description: Customer scope mismatch
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '404':
          description: Resource not found in customer scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '500':
          description: Internal failure serving the request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '502':
          description: The onramp provider rejected or failed the request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '503':
          description: Onramp is not configured
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - complianceSessionBearer: []
components:
  schemas:
    OnrampPayment:
      type: object
      properties:
        id:
          type: string
          format: uuid
        amount:
          type: string
          maxLength: 40
          pattern: ^(0|[1-9]\d*)(\.\d{1,2})?$
          description: Fiat major units actually sent
        currency:
          type: string
          enum:
            - EUR
            - USD
          description: Supported ISO 4217 fiat currency
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        bankReceipt:
          type: string
          enum:
            - not_started
            - pending
            - on_hold
            - processing
            - submitted
            - completed
            - failed
        conversion:
          type: string
          enum:
            - not_started
            - pending
            - on_hold
            - processing
            - submitted
            - completed
            - failed
        cryptoDelivery:
          type: string
          enum:
            - not_started
            - pending
            - on_hold
            - processing
            - submitted
            - completed
            - failed
        refund:
          type: string
          enum:
            - none
            - pending
            - processing
            - completed
            - failed
        adjustment:
          type: string
          enum:
            - none
            - pending
            - processing
            - completed
            - failed
      required:
        - id
        - amount
        - currency
        - createdAt
        - updatedAt
        - bankReceipt
        - conversion
        - cryptoDelivery
        - refund
        - adjustment
      additionalProperties: false
  securitySchemes:
    complianceSessionBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Required 15-minute customer-scoped browser session from POST
        /compliance/sessions. Application keys are not accepted.

````