---
title: "List Billing Addresses"
method: GET
path: "/v1/billing/addresses"
tags: ["Billing"]
---

# List Billing Addresses

`GET /v1/billing/addresses`

List all addresses which can be associated with payments

## Query parameters

- `page` integer — Page of results to include (default = 1)
- `per_page` integer — How many results to include in each page (default = 10)

## Response `200`

OK

- BillingAddressesResponse
  - `success` boolean — whether the request succeeded
  - `errors` string[]
  - `messages` string[], nullable
  - `metadata` object
    - `page` integer — Page number of the results
    - `page_size` integer — Number of results per page
    - `total` integer — Total number of results
    - `sort` string — Sorting criteria
    - `direction` 'asc' | 'desc' — Sorting direction
  - `result` BillingAddressWithPaymentMethods[]
    - `id` integer — Billing address identifier
    - `first_name` string — First name of the billing contact
    - `last_name` string — Last name of the billing contact
    - `address_line_1` string — First Address line of the billing contact
    - `address_line_2` string — Second Address line of the billing contact
    - `company_name` string — Company name of the billing contact
    - `email` string — Email address of the billing contact
    - `city` string — City of the billing contact
    - `state` string — State / Province of the billing contact
    - `country` string — Country Code of the billing contact
    - `postal_code` string — Postal code of the billing contact
    - `telephone` string — Telephone number of the billing contact
    - `receive_invoice_emails` boolean — If this email address should receive invoice related emails
    - `associated_payment_methods` BillingPaymentMethodForAddress[]
      - `id` integer — ID of the payment method
      - `type` 'Credit Card' | 'PayPal'
      - `active` boolean — The active payment method is the one that will be used to pay any automated payments
      - `description` string — Optional description of the card
      - `card_last_four` string — Last 4 digits of the payment method (if it is a credit card)
      - `card_type` string — Used payment card network
      - `expiry_date` string — Expiration month and year of the payment method (if it is a credit card)
      - `last_updated` string — Date the payment method was last updated

## Other responses

- `400` — Invalid or missing request parameters
- `401` — Authentication failed
- `500` — Internal error

---

[API](https://skmtc.net/rocket/apis/rocket-net-api.md) · [All operations](https://skmtc.net/rocket/apis/rocket-net-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rocket/rocket-net-api/versions/db0dcbbc5764/schema)
