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/schema \
--header 'Authorization: Bearer <token>'{
"domain": "dating",
"version": "dating.v3",
"fields": [
{
"name": "age",
"kind": "hard",
"type": "integer",
"required": true,
"priority": "high"
}
]
}Inspect the active extraction schema for a domain.
curl --request GET \
--url https://api.jeantechnologies.com/v1/schema \
--header 'Authorization: Bearer <token>'{
"domain": "dating",
"version": "dating.v3",
"fields": [
{
"name": "age",
"kind": "hard",
"type": "integer",
"required": true,
"priority": "high"
}
]
}Read-only. Returns the field definitions the platform uses when extracting fromDocumentation Index
Fetch the complete documentation index at: https://docs.jeanmemory.com/llms.txt
Use this file to discover all available pages before exploring further.
context or POST /context. Useful for:
curl "https://api.jeantechnologies.com/v1/schema?domain=dating" \
-H "Authorization: Bearer $JEAN_API_KEY"
{
"domain": "dating",
"version": "dating.v3",
"fields": [
{ "name": "age", "kind": "hard", "type": "integer", "required": true, "priority": "high" },
{ "name": "gender", "kind": "hard", "type": "enum", "required": true, "priority": "high" },
{ "name": "location", "kind": "hard", "type": "string", "required": true, "priority": "high" },
{ "name": "relationship_goal", "kind": "hard", "type": "enum", "required": false, "priority": "medium" },
{ "name": "values_text", "kind": "soft", "type": "string", "required": false, "priority": "medium" },
{ "name": "attachment_style", "kind": "derived", "type": "enum", "required": false, "priority": "low" }
]
}
| Kind | Used by | Example |
|---|---|---|
hard | SQL filter stage | age, location |
soft | embedding stage | values_text |
derived | computed at ingest | attachment_style |
API key issued by Jean Technologies. Contact the team for access.
"dating"