Skip to main content
GET
https://api.unleeshed.ai
/
partner
/
v1
/
personas
/
{id}
curl -X GET "https://api.unleeshed.ai/partner/v1/personas/persona-abc-123" \
  -H "X-Api-Key: pk_live_your_api_key"
{
  "success": true,
  "data": {
    "id": "persona-abc-123",
    "name": "Coach Mike",
    "image_url": "https://storage.unleeshed.ai/personas/coach-mike.jpg",
    "bio": "Former NFL defensive coordinator with 25 years of coaching experience. Known for developing Pro Bowl linebackers and creating innovative blitz packages. Now sharing insights on the modern game.",
    "expertise": [
      "NFL",
      "College Football",
      "Defensive Strategy",
      "Player Development"
    ],
    "social_links": {
      "twitter": "https://twitter.com/coachmike",
      "instagram": "https://instagram.com/coachmike"
    }
  }
}

Path Parameters

id
string
required
Persona UUID

Response

Returns full persona profile including bio, expertise, and social links.
id
string
Persona UUID.
name
string
Display name.
image_url
string
Avatar image URL.
bio
string
Full biography.
expertise
array
Array of expertise areas (sports, leagues, topics).
Social media links (twitter, instagram, etc.).
curl -X GET "https://api.unleeshed.ai/partner/v1/personas/persona-abc-123" \
  -H "X-Api-Key: pk_live_your_api_key"
{
  "success": true,
  "data": {
    "id": "persona-abc-123",
    "name": "Coach Mike",
    "image_url": "https://storage.unleeshed.ai/personas/coach-mike.jpg",
    "bio": "Former NFL defensive coordinator with 25 years of coaching experience. Known for developing Pro Bowl linebackers and creating innovative blitz packages. Now sharing insights on the modern game.",
    "expertise": [
      "NFL",
      "College Football",
      "Defensive Strategy",
      "Player Development"
    ],
    "social_links": {
      "twitter": "https://twitter.com/coachmike",
      "instagram": "https://instagram.com/coachmike"
    }
  }
}