Skip to main content
GET
/
accounts
/
payment
/
products
Get products
curl --request GET \
  --url https://api.quiva.ai/accounts/payment/products \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "marketing_features": "<array>",
      "description": "<string>",
      "price": {
        "id": "<string>",
        "currency": "<string>",
        "unit_amount": 123,
        "amount": 123,
        "lookup_key": "<string>",
        "nickname": "<string>",
        "metadata": {}
      },
      "metadata": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Products retrieved successfully

data
object[]
required