Quick Start
A quick guide to start using the JKT48Connect REST API. Get your API key and send your first request in minutes.
Start Using JKT48Connect API
The JKT48Connect API provides access to JKT48 data through simple REST endpoints. Follow the steps below to get started.
Step 1: Get an API Key
To access all endpoints of the JKT48Connect API, you need an API key.
- Visit jkt48connect.my.id/buyapi
- Choose a package that suits your needs
- Complete the purchase process
- Save the API key provided to you
Important: Never share your API key with anyone else. API keys are confidential and tied to your account.
Step 2: Set the Base URL
All requests to the JKT48Connect API use the following base URL:
https://v2.jkt48connect.comStep 3: Send Your First Request
Add your API key as the apikey query parameter in every request:
curl "https://v2.jkt48connect.com/api/jkt48/members?apikey=YOUR_API_KEY"Step 4: Receive the Response
All responses are sent in a structured JSON format:
[
{
"name": "Shani Indira Natio",
"generation": "JKT48 Gen 1",
"status": "active"
},
{
"name": "Fritzy",
"generation": "JKT48 Gen 12",
"status": "active"
}
]Available Endpoints
| Endpoint | Description |
|---|---|
GET /api/jkt48/members | All member data |
GET /api/jkt48/live | Members currently live streaming |
GET /api/jkt48/live/idn | Live streams exclusively from IDN |
GET /api/jkt48/theater | Theater performance schedules |
GET /api/jkt48/news | Latest news |
GET /api/jkt48/events | List of upcoming events |
GET /api/jkt48/birthday | Member birthdays |
Next Steps
What is JKT48Connect?
JKT48Connect is a REST API providing comprehensive data about JKT48. Easily access member profiles, theater schedules, live streams, news, events, and more through simple HTTP requests.
Authentication
Learn how to use an API key to authenticate and access all endpoints of the JKT48Connect REST API.