Get user
curl --request GET \
--url https://api.jeantechnologies.com/v1/users/{user_id} \
--header 'Authorization: Bearer <token>'{
"user_id": "u_alice",
"domain": "dating",
"schema_version": "dating.v3",
"fields": {
"age": 32,
"location": "New York, NY",
"relationship_goal": "serious"
},
"derived": {
"attachment_style": "secure"
},
"embeddings": {
"dating": {
"dim": 1024,
"version": "dating-2026-05-01"
}
},
"last_enriched_at": "2023-11-07T05:31:56Z"
}Users
Get user
Read a user’s full representation: structured fields, derived attributes, dense vectors per domain.
GET
/
users
/
{user_id}
Get user
curl --request GET \
--url https://api.jeantechnologies.com/v1/users/{user_id} \
--header 'Authorization: Bearer <token>'{
"user_id": "u_alice",
"domain": "dating",
"schema_version": "dating.v3",
"fields": {
"age": 32,
"location": "New York, NY",
"relationship_goal": "serious"
},
"derived": {
"attachment_style": "secure"
},
"embeddings": {
"dating": {
"dim": 1024,
"version": "dating-2026-05-01"
}
},
"last_enriched_at": "2023-11-07T05:31:56Z"
}Useful for debugging match decisions. Every value returned carries provenance, so you can trace any score in
/match back to which extraction or feedback event produced the underlying field.
Not intended to be in your request hot path. Cache aggressively if you do put it there.
curl "https://api.jeantechnologies.com/v1/users/u_alice?domain=dating" \
-H "Authorization: Bearer $JEAN_API_KEY"
Example response
{
"user_id": "u_alice",
"domain": "dating",
"schema_version": "dating.v3",
"fields": {
"age": 32,
"location": "New York, NY",
"relationship_goal": "serious",
"values_text": "..."
},
"derived": {
"attachment_style": "secure"
},
"embeddings": {
"dating": { "dim": 1024, "version": "dating-2026-05-01" }
},
"last_enriched_at": "2026-05-17T22:01:09Z"
}
Omit the
domain query param to get all heads this user has been processed for. Useful for cross-domain inspection.Authorizations
API key issued by Jean Technologies. Contact the team for access.
Path Parameters
Query Parameters
Restrict the response to a single domain.
Example:
"dating"
Response
User found
Example:
"u_alice"
Example:
"dating"
Example:
"dating.v3"
Example:
{
"age": 32,
"location": "New York, NY",
"relationship_goal": "serious"
}Example:
{ "attachment_style": "secure" }Show child attributes
Show child attributes
Example:
{
"dating": {
"dim": 1024,
"version": "dating-2026-05-01"
}
}⌘I

