Skip to main content
Developer docs · Beta

Model people with real behavior.

Behavioral data, training support, and evaluations for companies modeling people over time.

  • Jean supports companies that need to model humans by providing data on how people behave over time across a wide range of contexts.
  • Use Jean's data to train your own models, adapt them to your tasks, and measure whether a vendor or model is living up to its promise.

Start with the call below, or adapt a model to your data.

Beta access is provisioned with the team. Your onboarding includes a base URL, an API key, and enabled capabilities. These docs define the beta contract; examples illustrate its shape. An endpoint is usable once enabled for your workspace. Request access.

Make your first call

Start with one person's history and a few candidate items. Jean returns those candidates in ranked order. Replace the values below with the base URL, key, model, and item IDs from onboarding.

curl --fail-with-body "$JEAN_BASE_URL/models/$JEAN_MODEL_ID/predict" \
-H "Authorization: Bearer $JEAN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"history":["item_1"],"candidate_item_ids":["item_2","item_3"],"limit":2}'

The response is a ranked list with a score for each item. See the API reference for setup and the other available operations.