Checkouts
Returns all checkout sessions
REST API
Checkouts
Returns all checkout sessions
GET
/
checkouts
Copy
Ask AI
curl --request GET \
--url https://api.commerce.coinbase.com/checkouts \
--header 'X-CC-Api-Key: <api-key>'
Copy
Ask AI
[
{
"brand_color": "<string>",
"brand_logo_url": "<string>",
"coinbase_managed_merchant": true,
"description": "<string>",
"extended_description": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"local_price": {
"amount": "<string>",
"currency": "<string>"
},
"logo_url": "<string>",
"max_contribution_amount": {
"amount": "<string>",
"currency": "<string>"
},
"name": "<string>",
"organization_name": "<string>",
"pricing_type": "fixed_price",
"requested_info": [
"<string>"
],
"resource": "<string>",
"suggested_amounts": [
{
"amount": "<string>",
"currency": "<string>"
}
]
}
]
Authorizations
Response
200
application/json
List of checkout sessions
The response is of type object[]
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.commerce.coinbase.com/checkouts \
--header 'X-CC-Api-Key: <api-key>'
Copy
Ask AI
[
{
"brand_color": "<string>",
"brand_logo_url": "<string>",
"coinbase_managed_merchant": true,
"description": "<string>",
"extended_description": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"local_price": {
"amount": "<string>",
"currency": "<string>"
},
"logo_url": "<string>",
"max_contribution_amount": {
"amount": "<string>",
"currency": "<string>"
},
"name": "<string>",
"organization_name": "<string>",
"pricing_type": "fixed_price",
"requested_info": [
"<string>"
],
"resource": "<string>",
"suggested_amounts": [
{
"amount": "<string>",
"currency": "<string>"
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.