Skip to main content
GET
/
taxes
List all taxes
curl --request GET \
  --url https://api-m.paypal.com/v1/commerce/billing/taxes \
  --header 'Authorization: Bearer <token>'
{
  "taxes": [
    {
      "id": "1a901a90-1a90-1a90-1a90-1a901a901a90",
      "name": "Standard VAT",
      "code": "standard_vat",
      "description": "Standard Value Added Tax",
      "rate": "20.00",
      "created_at": "2023-07-06T14:35:58Z"
    },
    {
      "id": "2b902b90-2b90-2b90-2b90-2b902b902b90",
      "name": "Reduced VAT",
      "code": "reduced_vat",
      "description": "Reduced Value Added Tax",
      "rate": "5.00",
      "created_at": "2023-07-06T14:45:23Z"
    }
  ],
  "meta": {
    "total_count": 2,
    "total_pages": 1,
    "current_page": 1
  }
}

Authorizations

Authorization
string
header
required

Use the /v1/oauth2/token endpoint to obtain an access token and pass it as a Bearer token in the Authorization header.

Query Parameters

page
integer

Page number

per_page
integer

Number of records per page

Response

Successfully retrieved taxes

Paginated list of tax objects

taxes
object[]
required
meta
object
required
I