JKT48Connect

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.

  1. Visit jkt48connect.my.id/buyapi
  2. Choose a package that suits your needs
  3. Complete the purchase process
  4. 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.com

Step 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

EndpointDescription
GET /api/jkt48/membersAll member data
GET /api/jkt48/liveMembers currently live streaming
GET /api/jkt48/live/idnLive streams exclusively from IDN
GET /api/jkt48/theaterTheater performance schedules
GET /api/jkt48/newsLatest news
GET /api/jkt48/eventsList of upcoming events
GET /api/jkt48/birthdayMember birthdays

Next Steps

On this page