Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
List of prompt personalities retrieved successfully
curl --request GET \
--url https://prod.featherhq.com/api/v1/prompts/personalities \
--header 'Authorization: Bearer <token>'{
"personalities": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"personalityPrompt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}List all available prompt personalities
curl --request GET \
--url https://prod.featherhq.com/api/v1/prompts/personalities \
--header 'Authorization: Bearer <token>'{
"personalities": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"personalityPrompt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of prompt personalities retrieved successfully
Show child attributes