Get schema
curl --request GET \
--url https://api.jeantechnologies.com/v1/schema \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.jeantechnologies.com/v1/schema"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.jeantechnologies.com/v1/schema', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.jeantechnologies.com/v1/schema",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.jeantechnologies.com/v1/schema"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.jeantechnologies.com/v1/schema")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.jeantechnologies.com/v1/schema")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"domain": "dating",
"version": "dating.v3",
"fields": [
{
"name": "age",
"kind": "hard",
"type": "integer",
"required": true,
"priority": "high"
}
]
}Schema
Get schema
Inspect the active extraction schema for a domain.
GET
/
schema
Get schema
curl --request GET \
--url https://api.jeantechnologies.com/v1/schema \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.jeantechnologies.com/v1/schema"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.jeantechnologies.com/v1/schema', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.jeantechnologies.com/v1/schema",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.jeantechnologies.com/v1/schema"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.jeantechnologies.com/v1/schema")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.jeantechnologies.com/v1/schema")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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 from
Three field kinds:
See Concepts for what each kind means in practice.
context or POST /context. Useful for:
- Debugging why a field isn’t being extracted.
- Documenting your own integration against the canonical shape.
- Building admin UIs that show users what they’re consenting to.
curl "https://api.jeantechnologies.com/v1/schema?domain=dating" \
-H "Authorization: Bearer $JEAN_API_KEY"
schema = requests.get(
"https://api.jeantechnologies.com/v1/schema",
headers={"Authorization": f"Bearer {os.environ['JEAN_API_KEY']}"},
params={"domain": "dating"},
).json()
const res = await fetch(
"https://api.jeantechnologies.com/v1/schema?domain=dating",
{ headers: { Authorization: `Bearer ${process.env.JEAN_API_KEY}` } },
);
const schema = await res.json();
Example response
{
"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 |
Authorizations
API key issued by Jean Technologies. Contact the team for access.
Query Parameters
Example:
"dating"
⌘I

