Create Quote

POST /v0/customers/{customer_id}/onramp-transfer/quote

Description: Create an onramp transfer quote for a given customer.

Path parameters

  • customer_id (string · uuid) — Required The unique identifier of the customer

Header parameters

  • Authorization (string) — Required Token for authentication

Body (application/json)

  • Either source_amount OR destination_amount must be provided to calculate the quote in the desired direction.

Possible request shapes:

chevron-rightBySourceAmount (provide source_amount)hashtag

JSON object with properties such as:

  • source_amount

  • source_currency

  • source_payment_rails

  • destination_token

  • destination_network

  • developer_fee_percent

chevron-rightByDestinationAmount (provide destination_amount)hashtag

JSON object with properties such as:

  • destination_amount

  • source_currency

  • source_payment_rails

  • destination_token

  • destination_network

  • developer_fee_percent

Request example (HTTP)

Request
POST /v0/customers/{customer_id}/onramp-transfer/quote HTTP/1.1
Host: gateway.noxxo.com
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 168

{
  "source_amount": "100.50",
  "source_payment_rails": "ach",
  "source_currency": "usd",
  "destination_token": "usdc",
  "destination_network": "polygon",
  "developer_fee_percent": "0.5"
}

Response

201 — Quote created successfully (application/json)

Response example

Last updated 4 months ago

Last updated