Skip to main content
GET
/
api
/
v2
/
customers
/
profile
Get customer profile
curl --request GET \
  --url https://sandbox.killb.app/api/v2/customers/profile \
  --header 'Authorization: Bearer <token>'
{
  "id": "e8d74b2f-86df-43b0-a9d9-72055a6b0432",
  "name": "Acme Corp S.A.S.",
  "active": true,
  "status": "ACTIVE",
  "createdAt": "2026-04-23T00:38:08.439Z",
  "updatedAt": "2026-04-23T00:38:08.439Z",
  "documentType": "NIT",
  "documentNumber": "900123456",
  "complianceUrl": "https://compliance.example.com/customer/e8d74b2f",
  "favoriteUserId": "e8d74b2f-86df-43b0-a9d9-72055a6b0432",
  "note": "Customer in good standing"
}

Documentation Index

Fetch the complete documentation index at: https://docs.killb.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

id
string
required
Example:

"e8d74b2f-86df-43b0-a9d9-72055a6b0432"

name
string
required
Example:

"Acme Corp S.A.S."

active
boolean
required
Example:

true

status
enum<string>
required
Available options:
ACTIVE,
PENDING,
REJECTED
Example:

"ACTIVE"

createdAt
string<date-time>
required
Example:

"2026-04-23T00:38:08.439Z"

updatedAt
string<date-time>
required
Example:

"2026-04-23T00:38:08.439Z"

documentType
string
Example:

"NIT"

documentNumber
string
Example:

"900123456"

complianceUrl
string
Example:

"https://compliance.example.com/customer/e8d74b2f"

favoriteUserId
string
Example:

"e8d74b2f-86df-43b0-a9d9-72055a6b0432"

note
string
Example:

"Customer in good standing"