Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl https://api.voyantcloud.com/v1/people/p_123 \ -H "Authorization: Bearer $VOYANT_API_KEY"
await fetch("https://api.voyantcloud.com/v1/people/p_123", { headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY!}` }, })
import os, requests requests.get("https://api.voyantcloud.com/v1/people/p_123", headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"})
{ "id": "p_123", "firstName": "Ana", "lastName": "Ionescu" }
Retrieve a person by ID.
GET
/v1/people/:id
Authorization: Bearer YOUR_API_KEY