Skip to content

List payment methods

GET
/api/v1/organizations/{orgID}/billing/payment-methods
curl --request GET \
--url https://api.aetherplatform.cloud/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/billing/payment-methods \
--header 'Authorization: Bearer <token>'
orgID
required
string format: uuid

Organization UUID.

A list of payment methods.

Media type application/json
object
items
required
Array<object>
object
id
required
string format: uuid
org_id
required
string format: uuid
card_brand
string | null
card_last4
string | null
card_exp_month
integer | null
card_exp_year
integer | null
is_default
required
boolean
created_at
required
string format: date-time
Example generated
{
"items": [
{
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"org_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"card_brand": "example",
"card_last4": "example",
"card_exp_month": 1,
"card_exp_year": 1,
"is_default": true,
"created_at": "2026-04-15T12:00:00Z"
}
]
}

Missing or invalid credentials.

Media type application/json
object
error
required
object
code
required

A stable, machine-readable error code.

string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Example generated
{
"error": {
"code": "example",
"message": "example",
"details": [
{
"field": "example",
"code": "example",
"message": "example"
}
]
}
}