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



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /offramp/noah/options
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:
  /offramp/noah/options:
    get:
      tags:
        - offramp
      parameters:
        - schema:
            type: string
            pattern: ^[A-Z]{2}$
          required: true
          name: country
          in: query
        - schema:
            type: string
            enum:
              - EUR
              - USD
            description: Supported ISO 4217 fiat currency
          required: true
          description: Supported ISO 4217 fiat currency
          name: currency
          in: query
        - schema:
            type: string
            enum:
              - bank_transfer
          required: true
          name: paymentMethod
          in: query
        - schema:
            type: string
            format: uuid
            description: Opaque Rhinestone selection scoped to customer and intent
          required: false
          description: Opaque Rhinestone selection scoped to customer and intent
          name: optionId
          in: query
        - schema:
            type: string
            maxLength: 40
            pattern: ^(0|[1-9]\d*)(\.\d{1,2})?$
            description: Fiat major units the recipient receives, not crypto input
          required: true
          description: Fiat major units the recipient receives, not crypto input
          name: amount
          in: query
      responses:
        '200':
          description: Customer resources
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/RampOption'
                  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
        '503':
          description: Offramp is not configured
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - complianceSessionBearer: []
components:
  schemas:
    RampOption:
      type: object
      properties:
        optionId:
          type: string
          format: uuid
        currency:
          type: string
          enum:
            - EUR
            - USD
          description: Supported ISO 4217 fiat currency
        paymentMethod:
          type: string
          enum:
            - bank_transfer
      required:
        - optionId
        - currency
        - paymentMethod
      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.

````