Skip to main content
GET
/
customers
/
me
Get customer profile
curl --request GET \
  --url https://api.deframe.io/customers/me \
  --header 'x-api-key: <api-key>'
{
  "_id": "<string>",
  "name": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "feeCollectorAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain from your Deframe dashboard.

Response

Customer profile retrieved

_id
string
required
name
string
required
createdAt
string
required
updatedAt
string
required
feeCollectorAddress
string

Ethereum address (EVM-compatible)

Example:

"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"