Spec-only preview. The API is not yet live; the surface below is what we are building toward. Request access to the closed beta.
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"
}Read a user’s full representation: structured fields, derived attributes, dense vectors per domain.
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 inDocumentation Index
Fetch the complete documentation index at: https://docs.jeanmemory.com/llms.txt
Use this file to discover all available pages before exploring further.
/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"
{
"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"
}
domain query param to get all heads this user has been processed for. Useful for cross-domain inspection.API key issued by Jean Technologies. Contact the team for access.
Restrict the response to a single domain.
"dating"
User found
"u_alice"
"dating"
"dating.v3"
{
"age": 32,
"location": "New York, NY",
"relationship_goal": "serious"
}{ "attachment_style": "secure" }Show child attributes
{
"dating": {
"dim": 1024,
"version": "dating-2026-05-01"
}
}