Skip to main content
GET
/
applications
/
centre
/
{centreId}
Get Application Centre
curl --request GET \
  --url https://api.series.hr/applications/centre/{centreId} \
  --header 'apikey: <api-key>'
Get detailed information about a specific application centre.

Request

curl -X GET https://api.series.hr/applications/centre/centre_123 \
  -H "apikey: YOUR_API_KEY"

Parameters

centreId
string
required
Application centre ID

Response

200
{
  "success": true,
  "data": {
    "centreId": "centre_123",
    "name": "Developer Programme",
    "description": "Apply to become a developer",
    "questions": [
      {
        "id": "q_1",
        "question": "What is your Roblox experience?",
        "type": "text"
      },
      {
        "id": "q_2",
        "question": "How many games have you created?",
        "type": "number"
      }
    ]
  }
}

Authorizations

apikey
string
header
required

Path Parameters

centreId
string
required

Response

200

Centre details