Returns the profile of the currently authenticated customer
import { createClient } from '@spree/sdk'
const client = createClient({
baseUrl: 'https://your-store.com',
publishableKey: '<api-key>',
})
const customer = await client.customer.get({
bearerToken: '<token>',
}){
"id": "cus_UkLWZg9DAJ",
"email": "digna@corkery.com",
"first_name": "Ashlea",
"last_name": "Gutkowski",
"phone": "555-555-0199",
"accepts_email_marketing": false,
"created_at": "2026-03-11T14:45:54.093Z",
"updated_at": "2026-03-11T14:45:54.364Z",
"addresses": [
{
"id": "addr_gbHJdmfrXB",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "106 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_117",
"state_abbr": "STATE_ABBR_117",
"quick_checkout": false,
"state_name": "STATE_NAME_117"
},
{
"id": "addr_UkLWZg9DAJ",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "105 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_116",
"state_abbr": "STATE_ABBR_116",
"quick_checkout": false,
"state_name": "STATE_NAME_116"
}
],
"default_billing_address": {
"id": "addr_gbHJdmfrXB",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "106 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_117",
"state_abbr": "STATE_ABBR_117",
"quick_checkout": false,
"state_name": "STATE_NAME_117"
},
"default_shipping_address": {
"id": "addr_UkLWZg9DAJ",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "105 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_116",
"state_abbr": "STATE_ABBR_116",
"quick_checkout": false,
"state_name": "STATE_NAME_116"
}
}Publishable API key for store access
JWT token for authenticated customers
Comma-separated list of fields to include (e.g., name,slug,price). id is always included.
profile found
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
import { createClient } from '@spree/sdk'
const client = createClient({
baseUrl: 'https://your-store.com',
publishableKey: '<api-key>',
})
const customer = await client.customer.get({
bearerToken: '<token>',
}){
"id": "cus_UkLWZg9DAJ",
"email": "digna@corkery.com",
"first_name": "Ashlea",
"last_name": "Gutkowski",
"phone": "555-555-0199",
"accepts_email_marketing": false,
"created_at": "2026-03-11T14:45:54.093Z",
"updated_at": "2026-03-11T14:45:54.364Z",
"addresses": [
{
"id": "addr_gbHJdmfrXB",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "106 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_117",
"state_abbr": "STATE_ABBR_117",
"quick_checkout": false,
"state_name": "STATE_NAME_117"
},
{
"id": "addr_UkLWZg9DAJ",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "105 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_116",
"state_abbr": "STATE_ABBR_116",
"quick_checkout": false,
"state_name": "STATE_NAME_116"
}
],
"default_billing_address": {
"id": "addr_gbHJdmfrXB",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "106 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_117",
"state_abbr": "STATE_ABBR_117",
"quick_checkout": false,
"state_name": "STATE_NAME_117"
},
"default_shipping_address": {
"id": "addr_UkLWZg9DAJ",
"firstname": "John",
"lastname": "Doe",
"full_name": "John Doe",
"address1": "105 Lovely Street",
"address2": "Northwest",
"city": "Herndon",
"zipcode": "35005",
"phone": "555-555-0199",
"company": "Company",
"country_name": "United States of America",
"country_iso": "US",
"state_text": "STATE_ABBR_116",
"state_abbr": "STATE_ABBR_116",
"quick_checkout": false,
"state_name": "STATE_NAME_116"
}
}