---
title: "Get Account Details"
method: GET
path: "/v1/account"
tags: ["Account"]
---

# Get Account Details

`GET /v1/account`

Fetch a shopper's account details to pre-fill checkout fields. This request must come from your backend for security purposes, as it requires the use of your private key to authenticate. For PCI compliance, only limited information is returned for each credit card available in the shopper’s wallet.

## Headers

- `X-Publishable-Key` string

## Response `200`

Account Details Fetched

- AccountDetails
  - `addresses` AccountDetailsAddressView[] — A list of all addresses associated to the shopper's account.
    - `company` string — The company name associated with this address.
    - `country` string — The name of the country associated with this address.
    - `country_code` string — The ISO 3166-1 alpha-2 country code associated with this address.
    - `door_code` string, nullable — The building door code or community gate code.
    - `email_address` string, email — An email address.
    - `first_name` string — The given name of the person associated with this address.
    - `id` string — The unique Bolt ID associated with this address.
    - `last_name` string — The surname of the person associated with this address.
    - `locality` string — The city name details associated with this address.
    - `name` string — The given and surname of the person associated with this address.
    - `phone_number` string — A phone number following E164 standards, in its globalized format, i.e. prepended with a plus sign.
    - `postal_code` string — The postal or zip code associated with this address.
    - `priority` 'primary' | 'listed', nullable — The shopper-indicated priority of this address compared to other addresses on their account.
    - `region` string — The region details such as state or province associated with this address.
    - `region_code` string, nullable — The the ISO 3166-2 region code associated with this address.
    - `street_address1` string — The street number and street name of the address.
    - `street_address2` string — Any apartment, floor, or unit details.
    - `street_address3` string, nullable — Any additional street address details.
    - `street_address4` string, nullable — Any additional street address details.
    - `default` boolean — The default shipping address chosen by the shopper.
    - `metadata` ShopperMetadata, nullable — A key-value pair object that allows users to store arbitrary information associated with an object. For any individual account object, we allow up to 50 keys. Keys can be up to 40 characters long and values can be up to 500 characters long. Metadata should not contain any sensitive customer information, like PII (Personally Identifiable Information). For more information about metadata, see our [documentation](https://help.boltapp.com/developers/references/embedded-metadata/).
      - `additionalProperties` string
  - `has_bolt_account` boolean — Used to determine whether a Bolt Account exists with this shopper's account details.
  - `payment_methods` union[] — A list of all payment methods associated to the shopper's account.
    - union
      - SavedCreditCardView — Saved Credit Card Detail
        - `billing_address` AddressView — The address object returned in the response.
          - `company` string — The company name associated with this address.
          - `country` string — The name of the country associated with this address.
          - `country_code` string — The ISO 3166-1 alpha-2 country code associated with this address.
          - `door_code` string, nullable — The building door code or community gate code.
          - `email_address` string, email — An email address.
          - `first_name` string — The given name of the person associated with this address.
          - `id` string — The unique Bolt ID associated with this address.
          - `last_name` string — The surname of the person associated with this address.
          - `locality` string — The city name details associated with this address.
          - `name` string — The given and surname of the person associated with this address.
          - `phone_number` string — A phone number following E164 standards, in its globalized format, i.e. prepended with a plus sign.
          - `postal_code` string — The postal or zip code associated with this address.
          - `priority` 'primary' | 'listed', nullable — The shopper-indicated priority of this address compared to other addresses on their account.
          - `region` string — The region details such as state or province associated with this address.
          - `region_code` string, nullable — The the ISO 3166-2 region code associated with this address.
          - `street_address1` string — The street number and street name of the address.
          - `street_address2` string — Any apartment, floor, or unit details.
          - `street_address3` string, nullable — Any additional street address details.
          - `street_address4` string, nullable — Any additional street address details.
        - `id` string — The ID of the payment method associated with the Shopper's account.
        - `last4` string — The card's last 4 digits. **Nullable** for Transactions Details.
        - `exp_month` integer — The expiration month of the credit card.
        - `exp_year` integer — The expiration year of the credit card.
        - `network` 'visa' | 'mastercard' | 'amex' | 'discover' | 'dinersclub' | 'jcb' | 'unionpay' | 'alliancedata' | 'citiplcc' | 'unknown' — The card's network code. **Nullable** for Transactions Details. Note: LEGACY diners_club_us_ca now tagged as mastercard
        - `default` boolean — The default card payment method chosen by the shopper.
        - `type` 'card' | 'paypal' — The payment method type. If empty, the property defaults to `card`.
        - `description` string — The APM account identifier; usually the email address.
        - `metadata` ShopperMetadata, nullable — A key-value pair object that allows users to store arbitrary information associated with an object. For any individual account object, we allow up to 50 keys. Keys can be up to 40 characters long and values can be up to 500 characters long. Metadata should not contain any sensitive customer information, like PII (Personally Identifiable Information). For more information about metadata, see our [documentation](https://help.boltapp.com/developers/references/embedded-metadata/).
          - `additionalProperties` string
      - SavedPaypalAccountView — Saved PayPal account details.
        - `id` string — The ID of the payment method associated with the Shopper's account.
        - `type` 'paypal' — Type field indicates this is a saved PayPal to differentiate it from a saved card.
        - `description` string — The email associated with a shopper's saved PayPal account.
        - `metadata` ShopperMetadata, nullable — A key-value pair object that allows users to store arbitrary information associated with an object. For any individual account object, we allow up to 50 keys. Keys can be up to 40 characters long and values can be up to 500 characters long. Metadata should not contain any sensitive customer information, like PII (Personally Identifiable Information). For more information about metadata, see our [documentation](https://help.boltapp.com/developers/references/embedded-metadata/).
          - `additionalProperties` string
  - `profile` ProfileView — The shopper's account profile.
    - `email` string, email — An email address.
    - `first_name` string — The given name of the person associated with this record.
    - `last_name` string — The surname of the person associated with this record.
    - `metadata` ShopperMetadata, nullable — A key-value pair object that allows users to store arbitrary information associated with an object. For any individual account object, we allow up to 50 keys. Keys can be up to 40 characters long and values can be up to 500 characters long. Metadata should not contain any sensitive customer information, like PII (Personally Identifiable Information). For more information about metadata, see our [documentation](https://help.boltapp.com/developers/references/embedded-metadata/).
      - `additionalProperties` string
    - `name` string — The given and surname of the person associated with this address.
    - `phone` string — A phone number following E164 standards, in its globalized format, i.e. prepended with a plus sign.

---

[API](https://skmtc.dev/bolt/apis/bolt-api-reference.md) · [All operations](https://skmtc.dev/bolt/apis/bolt-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bolt/bolt-api-reference/revisions/1f62c40558c6/schema)
