Onramps#Show

Tell us which banks we should pay once your Quote is executed.

Example Request

curl https://{{base_url}}/users/USER_ID/onramps/ONRAMP_ID
-X GET \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-type: application/json"

Endpoint Information

Show Onramp

POST https://{{base_url}}/users/:user_id/onramps/:onramp_id

Path Parameters

NameTypeDescription

user_id*

UUID

The ID in Pay.so for the user who is making the payment.

onramp_id*

UUID

The ID in Pay.so for the Onramp you would like to inspect.

{ 
   "onramp": {
     id: "074cb3e4-1f56-4916-8024-ecbf6f805b90",
     user_id: "a25a4274-8f50-4579-b476-8f35b297d4ad",
     status: "initiated",
     crypto_currency: "usdc",
     crypto_rails: "polygon",
     destination_amount: 1000,
     destination_address: "0x709c56AfDAdBDCAB4f7a6aAe99644C91C3eF67eF",
     fiat_currency: "usd",
     fiat_rails: "ach_push",
     deposit_amount: 1004,
     fee: 4
   }
}

Last updated