Suave Aggregator
- Overview
- SDK Guide
- API Reference
Suave Checkout
- Introduction
- Use Cases
- API Documentation
- Authentication
- Data types
- Quote API
- Payment API
- Payment webhooks
- SDK Documentation
Payment API
Get Payment Order
GET
/
api
/
v1
/
payment
/
{id}
Copy
curl --request GET \
--url https://checkout.suave.money/api/v1/payment/{id}
Copy
{
"payment_order_id": "<string>",
"payment_order_status": "<string>",
"env_mode": "live",
"success_callback_url": "<string>",
"cancel_callback_url": "<string>",
"failure_callback_url": "<string>",
"line_items": [
{
"title": "<string>",
"description": "<string>",
"image_url": "<string>",
"quantity": 123
}
],
"order_price": {
"currency": "<string>",
"amount": 123,
"decimals": 123
},
"transaction_hash": "<string>",
"metadata": {}
}
Path Parameters
Payment order ID
Response
200 - application/json
A JSON object with payment order details
The response is of type object
.
Copy
curl --request GET \
--url https://checkout.suave.money/api/v1/payment/{id}
Copy
{
"payment_order_id": "<string>",
"payment_order_status": "<string>",
"env_mode": "live",
"success_callback_url": "<string>",
"cancel_callback_url": "<string>",
"failure_callback_url": "<string>",
"line_items": [
{
"title": "<string>",
"description": "<string>",
"image_url": "<string>",
"quantity": 123
}
],
"order_price": {
"currency": "<string>",
"amount": 123,
"decimals": 123
},
"transaction_hash": "<string>",
"metadata": {}
}
Assistant
Responses are generated using AI and may contain mistakes.