Get age-appropriate ratings for child

GET/children/{childID}/age-ratings

Returns the content ratings appropriate for the child's current age across the supported rating systems, derived from the child's birth date.

Auth:Bearer

Path parameters

childID

uuidrequired

Response

age

Child's age in years, derived from birth_date.

integer
ratings

Map of rating-system slug to the age-appropriate Rating in that system.

object
Request
bash
curl -sS "https://phosra-api-sandbox-production.up.railway.app/api/v1/children/a11ce0fa-0000-4000-8000-0000000000a1/age-ratings" \
  -H "Authorization: Bearer $PHOSRA_API_KEY"
Response
json
{
  "age": 0,
  "ratings": {}
}