AI Endpoint
Ask natural-language questions about any professional's profile and get evidence-backed answers. The response includes structured metadata — answer status, confidence level, and cited sources — so your application can display results intelligently.
Base URL
Contract Notes
Grounding-first behavior
The service attempts deterministic profile answers first, then falls back to a full-profile LLM path when synthesis is required.
Stable client signals
Use answer_status, answer_mode, confidence_band, and evidence_types to drive UI and automation safely.
AI
1Ask a natural-language question about a public profile.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| username | string |
Yes | Target username* |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| question | string |
Yes | Question between 3 and 500 characters* |
Response
| Field | Type | Required | Description |
|---|---|---|---|
| answer | string |
Yes | Grounded answer text* |
| username | string |
Yes | Target username* |
| answer_status | string |
Yes | answered, partially_answered, insufficient_evidence, unsupported, or no_profile_data* |
| answer_mode | string |
Yes | deterministic or llm_full_context* |
| confidence_band | string |
No | high, medium, or low user-facing support signal |
| confidence | number |
No | Heuristic internal confidence detail |
| evidence_types | array |
Yes | Grounding facets used for the answer* |
| sources | array |
Yes | Compact grounded citations or supporting source rows* |
Request
{
"question": "How many years of backend experience does this person have?"
}
Response 200 OK
{
"answer": "The profile shows about 8 years of backend-oriented experience across Python and API-focused roles.",
"username": "hershel",
"answer_mode": "deterministic",
"answer_status": "answered",
"confidence_band": "high",
"confidence": 0.91,
"evidence_types": ["experience", "skill"],
"sources": [
{
"label": "Work Experience (3)",
"facet": "experience",
"snippet": "3 work experience entries in profile"
}
]
}