curl --request GET \
--url https://api.example.com/api/v1/personalize/result/{job_id} \
--header 'Authorization: Bearer <token>'{
"personalised_email": "<string>",
"metadata": {
"commonality_found": "<string>",
"confidence_score": 0.5,
"research_sources": [
"<string>"
],
"generation_time_ms": 123,
"model_used": "<string>"
},
"subject_line": ""
}Retrieve the result of a completed personalization job
curl --request GET \
--url https://api.example.com/api/v1/personalize/result/{job_id} \
--header 'Authorization: Bearer <token>'{
"personalised_email": "<string>",
"metadata": {
"commonality_found": "<string>",
"confidence_score": 0.5,
"research_sources": [
"<string>"
],
"generation_time_ms": 123,
"model_used": "<string>"
},
"subject_line": ""
}Documentation Index
Fetch the complete documentation index at: https://docs.bavlio.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Response model for personalization endpoint as specified in PRD.