JKT48Connect

Members Endpoints

Documentation for the KLP48 API members endpoints.

Members API

Endpoints to retrieve information regarding KLP48 members.

GET /klp48/members

Retrieve a comprehensive list of all KLP48 members.

Request Structure:

GET https://your-api-domain.com/klp48/members
x-priority-token: P-ABCD1234

Example Response:

{
  "success": true,
  "total": 15,
  "data": [
    {
      "id": 1,
      "name": "Shania",
      "generation": "1"
    },
    {
      "id": 2,
      "name": "Maria",
      "generation": "1"
    }
  ],
  "message": "Data retrieved successfully"
}

GET /klp48/member/:name

Retrieve the specific profile of a single member by their name.

Parameters:

  • name (Required) — The full name or nickname of the member.

Example Request:

GET https://your-api-domain.com/klp48/member/Shania
x-priority-token: P-ABCD1234

Example Success Response:

{
  "success": true,
  "total": 1,
  "data": [
    {
      "id": 1,
      "name": "Shania",
      "generation": "1",
      "birthdate": "2000-01-01"
    }
  ],
  "message": "Data retrieved successfully"
}

Example Error Response:

{
  "success": false,
  "message": "Member tidak ditemukan",
  "error": "Error details if applicable"
}

On this page