User profile profile <int:item id> list

GET /user-profile/profile/<int:item-id>/

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • id integer Required
    • user integer Required
    • bio string

      Maximum length is 500.

    • location string

      Maximum length is 100.

    • birth_date string(date) | null
GET /user-profile/profile/<int:item-id>/
curl \
 --request GET 'http://api.example.com/user-profile/profile/<int:item-id>/'
Response examples (200)
[
  {
    "id": 42,
    "user": 42,
    "bio": "string",
    "location": "string",
    "birth_date": "2025-05-04"
  }
]