---
title: Billing address
summary: A billing address is used to calculate your bill correctly.
url: https://www.fastly.com/documentation/reference/api/account/billing-address
---

A billing address is used to calculate your bill correctly.

## Data model

| Field | Type | Description |
|-------|------|-------------|
| `address_1` | string | The first address line. |
| `address_2` | string | The second address line. |
| `city` | string | The city name. |
| `country` | string | ISO 3166-1 two-letter country code. |
| `customer_id` | string | Alphanumeric string identifying the customer. (Read-only) |
| `locality` | string | Other locality. |
| `postal_code` | string | Postal code (ZIP code for US addresses). |
| `state` | string | The state or province name. |
| `skip_verification` | boolean | When set to true, the address will be saved without verification. |
| `type` | string | Resource type. |
| `id` | string | Alphanumeric string identifying the billing address. (Read-only) |
| `relationships.customer.id` | string | Alphanumeric string identifying the customer. |
| `errors` | array |  |

## API endpoints

### Get a billing address

**GET** `/customer/{customer_id}/billing_address`

Get a customer's billing address.

**Parameters:**

| Name | Type | In | Required | Description |
|------|------|----|---------|--------------|
| `customer_id` | string | path | Yes | Alphanumeric string identifying the customer. |

### Add a billing address to a customer

**POST** `/customer/{customer_id}/billing_address`

Add a billing address to a customer.

**Parameters:**

| Name | Type | In | Required | Description |
|------|------|----|---------|--------------|
| `customer_id` | string | path | Yes | Alphanumeric string identifying the customer. |

### Delete a billing address

**DELETE** `/customer/{customer_id}/billing_address`

Delete a customer's billing address.

**Parameters:**

| Name | Type | In | Required | Description |
|------|------|----|---------|--------------|
| `customer_id` | string | path | Yes | Alphanumeric string identifying the customer. |

### Update a billing address

**PATCH** `/customer/{customer_id}/billing_address`

Update a customer's billing address. You may update only part of the customer's billing address.

**Parameters:**

| Name | Type | In | Required | Description |
|------|------|----|---------|--------------|
| `customer_id` | string | path | Yes | Alphanumeric string identifying the customer. |
