Enrich Person
POST
/api/person/enrich
const url = 'http://localhost:8000/api/person/enrich';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"deep":false,"linkedin_url":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:8000/api/person/enrich \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "deep": false, "linkedin_url": "example" }'Start enrichment for a LinkedIn profile URL (batch/non-streaming).
Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
EnrichRequest
object
deep
Deep
boolean
linkedin_url
required
Linkedin Url
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Enrich Person Api Person Enrich Post
object
key
additional properties
any
Examplegenerated
{}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}