List rating systems

GET/ratings/systems

List all content rating systems (MPAA, TV, ESRB, PEGI, CSM).

Response

id

Unique identifier for this resource.

string
name

Human-readable display name.

string
country

ISO country associated with this resource.

string
media_type

Type of media the rating system applies to (e.g. `game`, `film`, `general`).

string
description

Human-readable description.

string
Request
bash
curl -sS "https://phosra-api-sandbox-production.up.railway.app/api/v1/ratings/systems"
Response
json
[
  {
    "id": "string",
    "name": "string",
    "country": "string",
    "media_type": "string",
    "description": "string"
  }
]