Skip to main content
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"
}

Documentation Index

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

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

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

Authorization
string
header
required

API key issued by Jean Technologies. Contact the team for access.

Path Parameters

user_id
string
required

Query Parameters

domain
string

Restrict the response to a single domain.

Example:

"dating"

Response

User found

user_id
string
Example:

"u_alice"

domain
string
Example:

"dating"

schema_version
string
Example:

"dating.v3"

fields
object
Example:
{
"age": 32,
"location": "New York, NY",
"relationship_goal": "serious"
}
derived
object
Example:
{ "attachment_style": "secure" }
embeddings
object
Example:
{
"dating": {
"dim": 1024,
"version": "dating-2026-05-01"
}
}
last_enriched_at
string<date-time>