Personas
List Personas
Personas
List Personas
Retrieves a list of all personas available in the system
GET
/
personas
curl --request GET \
--url https://app.prontohq.com/api/v2/personas \
--header 'X-API-KEY: <api-key>'
[
{
"personas": [
{
"uuid": "8e1dcba0-f0bb-4071-99fc-f18ba6559ccc",
"name": "VP Grenoble",
"job_titles": [
"VP of Engineering",
"CTO"
],
"location": [
"Grenoble, Auvergne-Rhône-Alpes, France"
],
"created_at": "2024-09-09T15:15:15.951Z",
"updated_at": "2024-09-09T15:15:15.951Z"
},
{
"uuid": "598267ec-ac11-41b3-849f-bd360b185b76",
"name": "test",
"job_titles": [
"Cofounder",
"COO",
"CEO"
],
"location": [
"Paris, Île-de-France, France"
],
"created_at": "2025-01-03T17:35:33.073Z",
"updated_at": "2025-01-03T17:35:33.073Z"
}
]
}
]
Authorizations
Your API key
Response
200 - application/json
A JSON array of persona objects
The unique identifier of the persona
Example:
"8e1dcba0-f0bb-4071-99fc-f18ba6559ccc"
The name of the persona
Example:
"VP Grenoble"
List of job titles associated with the persona
Example:
["CEO", "COO", "Cofounder"]
List of locations associated with the persona
Example:
[
"Grenoble, Auvergne-Rhône-Alpes, France",
"Paris, Île-de-France, France"
]
The creation date of the persona
Example:
"2024-09-09T15:15:15.951Z"
The last modified date of the persona
Example:
"2024-09-09T15:15:15.951Z"
curl --request GET \
--url https://app.prontohq.com/api/v2/personas \
--header 'X-API-KEY: <api-key>'
[
{
"personas": [
{
"uuid": "8e1dcba0-f0bb-4071-99fc-f18ba6559ccc",
"name": "VP Grenoble",
"job_titles": [
"VP of Engineering",
"CTO"
],
"location": [
"Grenoble, Auvergne-Rhône-Alpes, France"
],
"created_at": "2024-09-09T15:15:15.951Z",
"updated_at": "2024-09-09T15:15:15.951Z"
},
{
"uuid": "598267ec-ac11-41b3-849f-bd360b185b76",
"name": "test",
"job_titles": [
"Cofounder",
"COO",
"CEO"
],
"location": [
"Paris, Île-de-France, France"
],
"created_at": "2025-01-03T17:35:33.073Z",
"updated_at": "2025-01-03T17:35:33.073Z"
}
]
}
]