Returns the profile of the currently authenticated customer
import { createSpreeClient } from '@spree/sdk'
const client = createSpreeClient({
baseUrl: 'https://your-store.com',
publishableKey: '<api-key>',
})
const customer = await client.store.customer.get({
bearerToken: '<token>',
}){
"id": "cus_UkLWZg9DAJ",
"email": "elvin@altenwerthschulist.us",
"first_name": "Kelly",
"last_name": "Terry",
"created_at": "2026-03-04T21:02:07.764Z",
"updated_at": "2026-03-04T21:02:08.032Z",
"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_106",
"state_abbr": "STATE_ABBR_106",
"quick_checkout": false,
"state_name": "STATE_NAME_106"
},
{
"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_105",
"state_abbr": "STATE_ABBR_105",
"quick_checkout": false,
"state_name": "STATE_NAME_105"
}
],
"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_106",
"state_abbr": "STATE_ABBR_106",
"quick_checkout": false,
"state_name": "STATE_NAME_106"
},
"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_105",
"state_abbr": "STATE_ABBR_105",
"quick_checkout": false,
"state_name": "STATE_NAME_105"
}
}Publishable API key for store access
JWT token for authenticated customers
profile found
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
import { createSpreeClient } from '@spree/sdk'
const client = createSpreeClient({
baseUrl: 'https://your-store.com',
publishableKey: '<api-key>',
})
const customer = await client.store.customer.get({
bearerToken: '<token>',
}){
"id": "cus_UkLWZg9DAJ",
"email": "elvin@altenwerthschulist.us",
"first_name": "Kelly",
"last_name": "Terry",
"created_at": "2026-03-04T21:02:07.764Z",
"updated_at": "2026-03-04T21:02:08.032Z",
"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_106",
"state_abbr": "STATE_ABBR_106",
"quick_checkout": false,
"state_name": "STATE_NAME_106"
},
{
"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_105",
"state_abbr": "STATE_ABBR_105",
"quick_checkout": false,
"state_name": "STATE_NAME_105"
}
],
"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_106",
"state_abbr": "STATE_ABBR_106",
"quick_checkout": false,
"state_name": "STATE_NAME_106"
},
"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_105",
"state_abbr": "STATE_ABBR_105",
"quick_checkout": false,
"state_name": "STATE_NAME_105"
}
}