Fetching data...
Developer API Reference
Build powerful integrations with our platform APIs.
Fetching data...
Build powerful integrations with our platform APIs.
Build powerful integrations with our platform APIs.
Dynamic API reference synchronized with our latest backend endpoints.
/api/v1/company-cardsReturns all company background profiles (Company Cards) for the authenticated tenant.
Example Request
bashcurl -X GET "https://your-tenant.peoplelensai.com/api/v1/company-cards" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" Example Response
json[
{
"id": "cc-123e4567-e89b-12d3-a456-426614174000",
"name": "Core Values & Culture",
"content": "We value transparency, ownership, and user-centricity.",
"created_at": "2026-02-25T08:00:00Z"
}
]/api/v1/company-cardsCreates a new Company Card which contains background context for AI interviewers.
nameRequiredstringcontentRequiredstringMarkdown or text content describing the company/culture.
Example Request
bashcurl -X POST "https://your-tenant.peoplelensai.com/api/v1/company-cards" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"name":"string","content":"string"}'Example Response
json{
"id": "cc-123e4567-e89b-12d3-a456-426614174000",
"name": "Core Values & Culture",
"content": "We value transparency, ownership, and user-centricity.",
"created_at": "2026-02-25T08:00:00Z"
}