Get customer profile
Returns the authenticated customer’s profile. Requires a customer bearer
token; returns 401 when the token is missing or invalid.
curl --request GET \
--url https://api.fluid.app/api/checkout/v2026-04/customers/me \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fluid.app/api/checkout/v2026-04/customers/me"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fluid.app/api/checkout/v2026-04/customers/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fluid.app/api/checkout/v2026-04/customers/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fluid.app/api/checkout/v2026-04/customers/me"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fluid.app/api/checkout/v2026-04/customers/me")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fluid.app/api/checkout/v2026-04/customers/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"fluid_pay_account": {
"id": 123,
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"phone": "<string>",
"address_count": 123,
"payment_methods_count": 123,
"language_iso": "<string>"
},
"customer": {
"id": 123,
"full_name": "<string>",
"email": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"user_company_id": 123,
"email_marketing": true,
"sms_marketing": true,
"account_id": "<string>",
"phone": "<string>",
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"verified_email": true,
"orders_count": 123,
"display_total_spent": "<string>",
"name": "<string>",
"role": "<string>",
"last_order_id": 123,
"notes": "<string>",
"active": true,
"total_spent": 123,
"is_rep": true,
"is_discarded": true,
"tax_exempt": true,
"sales_tax_id": "<string>",
"active_subscriptions_count": 123,
"inactive_subscriptions_count": 123,
"member_id": "<string>",
"jwt": "<string>",
"metadata": {},
"customer_notes": [
{
"id": 123,
"note": "<string>",
"customer_id": 123,
"resource_id": 123,
"resource_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"user_company_id": 123,
"user_company": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"email": "<string>",
"image_url": "<string>"
}
}
],
"default_address": {
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"phone": "<string>",
"country_num_code": 123,
"default": true
},
"addresses": [
{
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"phone": "<string>",
"country_num_code": 123,
"default": true
}
],
"payment_methods": [
{
"id": 123,
"source": "<string>",
"company_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"logo_url": "<string>",
"payment_title": "<string>",
"user_id": 123
}
],
"metafields": [
{
"id": 123,
"namespace": "<string>",
"key": "<string>",
"value": "<string>",
"value_type": "<string>",
"description": "<string>",
"owner_type": "<string>",
"owner_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metafield_definition": {
"id": 123,
"company_id": 123,
"namespace": "<string>",
"key": "<string>",
"name": "<string>",
"description": "<string>",
"value_type": "<string>",
"validation_rules": "<string>",
"owner_resource": "<string>",
"pinned": true,
"position": 123,
"locked": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"list_type": true,
"reference_type": true,
"supported_validations": [
"<string>"
],
"validation_description": "<string>",
"category_ids": [
123
]
}
}
]
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"message": "<string>"
}Authorizations
Bearer token authentication
Response
Success
Customer profile with Fluid Pay account (GET /customers/me). Rendered by Commerce::Api::FluidPay::FetchMeAction; the customer object comes from CustomerBlueprinter view :extended.
Unified wallet identity; shared and isolated wallets render identically (see FetchMeAction#me_account_hash).
Show child attributes
Show child attributes
Customer rendered by CustomerBlueprinter view :extended.
Show child attributes
Show child attributes
Standard envelope meta. Although FetchMeAction places a decoded_jwt meta key inside its resource hash, ControllerAction#success_response merges the default envelope meta over it, so the emitted meta is always the shared request_id/timestamp shape.
Show child attributes
Show child attributes
curl --request GET \
--url https://api.fluid.app/api/checkout/v2026-04/customers/me \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fluid.app/api/checkout/v2026-04/customers/me"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fluid.app/api/checkout/v2026-04/customers/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fluid.app/api/checkout/v2026-04/customers/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fluid.app/api/checkout/v2026-04/customers/me"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fluid.app/api/checkout/v2026-04/customers/me")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fluid.app/api/checkout/v2026-04/customers/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"fluid_pay_account": {
"id": 123,
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"phone": "<string>",
"address_count": 123,
"payment_methods_count": 123,
"language_iso": "<string>"
},
"customer": {
"id": 123,
"full_name": "<string>",
"email": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"user_company_id": 123,
"email_marketing": true,
"sms_marketing": true,
"account_id": "<string>",
"phone": "<string>",
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"verified_email": true,
"orders_count": 123,
"display_total_spent": "<string>",
"name": "<string>",
"role": "<string>",
"last_order_id": 123,
"notes": "<string>",
"active": true,
"total_spent": 123,
"is_rep": true,
"is_discarded": true,
"tax_exempt": true,
"sales_tax_id": "<string>",
"active_subscriptions_count": 123,
"inactive_subscriptions_count": 123,
"member_id": "<string>",
"jwt": "<string>",
"metadata": {},
"customer_notes": [
{
"id": 123,
"note": "<string>",
"customer_id": 123,
"resource_id": 123,
"resource_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"user_company_id": 123,
"user_company": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"email": "<string>",
"image_url": "<string>"
}
}
],
"default_address": {
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"phone": "<string>",
"country_num_code": 123,
"default": true
},
"addresses": [
{
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"phone": "<string>",
"country_num_code": 123,
"default": true
}
],
"payment_methods": [
{
"id": 123,
"source": "<string>",
"company_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"logo_url": "<string>",
"payment_title": "<string>",
"user_id": 123
}
],
"metafields": [
{
"id": 123,
"namespace": "<string>",
"key": "<string>",
"value": "<string>",
"value_type": "<string>",
"description": "<string>",
"owner_type": "<string>",
"owner_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metafield_definition": {
"id": 123,
"company_id": 123,
"namespace": "<string>",
"key": "<string>",
"name": "<string>",
"description": "<string>",
"value_type": "<string>",
"validation_rules": "<string>",
"owner_resource": "<string>",
"pinned": true,
"position": 123,
"locked": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"list_type": true,
"reference_type": true,
"supported_validations": [
"<string>"
],
"validation_description": "<string>",
"category_ids": [
123
]
}
}
]
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"message": "<string>"
}