zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Finance/Stockbit
Logo Stockbit

Stockbit

Data saham IDX dari Stockbit: harga, chart intraday, profil emiten, diskusi komunitas, dan kamus investasi.

Endpoints
10
Requests
104.1k
Updated
2 months ago
For LLMs
llms.txt
Endpoint health2 hours ago
  • symbolpassing, 0.8s
  • chartpassing, 0.3s
  • streampassing, 0.4s
  • profilepassing, 0.3s
  • glossarypassing, 0.2s
+ 5 more endpointsShow less
  • userpassing, 0.4s
  • postpassing, 0.2s
  • trendingfailed the last check
  • quotepassing, 0.1s
  • user-streampassing, 0.3s
9/10 passingdaily 01:00 WIB

Playground

10 endpoints
GET/v1/finance:stockbit/symbol1m cache1 paramchecking key…
Parameters
symbolstringrequired

IDX ticker, e.g. BBCA

·
Response
EXAMPLE
{
  "last": 6325,
  "name": "Bank Central Asia Tbk.",
  "type": "Saham",
  "change": -125,
  "sector": "Keuangan",
  "symbol": "BBCA",
  "volume": 153174800,
  "bestBid": {
    "price": 6350,
    "volume": 2925000
  },
  "country": "ID",
  "iconUrl": "https://assets.stockbit.com/logos/companies/BBCA.png",
  "indexes": [
    "TRADINGLIMIT",
    "IDXVESTA28",
    "ECONOMIC30",
    "DAYTRADE",
    "PRIMBANK10",
    "IDXLQ45LCL"
  ],
  "exchange": "IDX",
  "provider": "stockbit",
  "bestOffer": {
    "price": 6375,
    "volume": 548800
  },
  "followers": 3303290,
  "subSector": "Bank",
  "tradeable": true,
  "updatedAt": "2026-07-31T08:00:03+07:00",
  "tradingDate": "31 Jul 2026",
  "tradingTime": "Fri 16:14",
  "averageValue": 284796460,
  "marketStatus": "close",
  "changePercent": -1.94,
  "previousClose": 6450,
  "unusualMarketActivity": false
}

Code examples

Symbol
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("finance:stockbit", "symbol", {
  "symbol": "BBCA"
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/symbol?symbol=BBCA" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

10 endpoints · plain text
GETSymbol/v1/finance:stockbit/symbolHarga terkini satu saham IDX: last, previous close, perubahan, volume, dan bid/offer terbaik.

Parameters

symbolstringrequired
IDX ticker, e.g. BBCA

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/symbol?symbol=BBCA" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "last": 6325,
  "name": "Bank Central Asia Tbk.",
  "type": "Saham",
  "change": -125,
  "sector": "Keuangan",
  "symbol": "BBCA",
  "volume": 153174800,
  "bestBid": {
    "price": 6350,
    "volume": 2925000
  },
  "country": "ID",
  "iconUrl": "https://assets.stockbit.com/logos/companies/BBCA.png",
  "indexes": [
    "TRADINGLIMIT",
    "IDXVESTA28",
    "ECONOMIC30",
    "DAYTRADE",
    "PRIMBANK10",
    "IDXLQ45LCL"
  ],
  "exchange": "IDX",
  "provider": "stockbit",
  "bestOffer": {
    "price": 6375,
    "volume": 548800
  },
  "followers": 3303290,
  "subSector": "Bank",
  "tradeable": true,
  "updatedAt": "2026-07-31T08:00:03+07:00",
  "tradingDate": "31 Jul 2026",
  "tradingTime": "Fri 16:14",
  "averageValue": 284796460,
  "marketStatus": "close",
  "changePercent": -1.94,
  "previousClose": 6450,
  "unusualMarketActivity": false
}
GETChart/v1/finance:stockbit/chartDeret harga intraday satu saham, satu titik per menit perdagangan.

Parameters

symbolstringrequired
IDX ticker, e.g. BBCA
countnumberoptional
Keep only the last N points. Default: the whole session

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/chart?symbol=BBCA&count=100" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 5,
  "items": [
    {
      "time": "2026-07-31 16:09:00",
      "price": 6325,
      "change": -125,
      "changePercent": -1.94
    },
    {
      "time": "2026-07-31 16:10:00",
      "price": 6325,
      "change": -125,
      "changePercent": -1.94
    },
    {
      "time": "2026-07-31 16:11:00",
      "price": 6325,
      "change": -125,
      "changePercent": -1.94
    },
    {
      "time": "2026-07-31 16:12:00",
      "price": 6325,
      "change": -125,
      "changePercent": -1.94
    },
    {
      "time": "2026-07-31 16:14:00",
      "price": 6325,
      "change": -125,
      "changePercent": -1.94
    }
  ],
  "change": -125,
  "symbol": "BBCA",
  "interval": "intraday",
  "provider": "stockbit",
  "timeframe": "today",
  "tradingDate": "31 Jul 2026",
  "changePercent": -1.94,
  "previousClose": 6450
}
GETStream/v1/finance:stockbit/streamPostingan komunitas terbaru tentang satu saham.

Parameters

symbolstringrequired
IDX ticker, e.g. BBCA
countnumberoptional
Cap the list. Default: every post the page carries

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/stream?symbol=BBCA&count=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 5,
  "items": [
    {
      "id": 34411610,
      "isPro": false,
      "likes": 0,
      "images": [
        "https://stream-asset.stockbit.com/283bb801-4e10-4e88-aba7-d8b862a61c45_stream.jpg"
      ],
      "content": "$IHSG $BTC $BBCA",
      "replies": 0,
      "dislikes": 0,
      "fullName": "Ryusuf Ivan",
      "isPinned": false,
      "username": "RahardianYusufIvandyaz",
      "createdAt": "2026-08-02 17:45:44",
      "isOfficial": false
    },
    {
      "id": 34411604,
      "isPro": false,
      "likes": 0,
      "images": [
        "https://stream-asset.stockbit.com/9364d3c0-b966-4b65-830b-64d6390969a9_stream.jpg"
      ],
      "content": "@NurseTyaaa Artinya Indonesia cerah 🚀😂. \n\n\nRT $IHSG $BBCA $BBRI",
      "replies": 0,
      "dislikes": 0,
      "fullName": "Ovick",
      "isPinned": false,
      "username": "Taufik230295",
      "createdAt": "2026-08-02 17:45:05",
      "isOfficial": false
    },
    {
      "id": 34411461,
      "isPro": false,
      "likes": 0,
      "images": [
        "https://stream-asset.stockbit.com/6c824ce3-a4d8-4de9-b0ed-dbfe3c695c76_stream.jpg"
      ],
      "content": "Dengan FL portofolio sudah stabil di bawah 10%, strategi di bulan Agustus ini kemungkinan timbun cash dulu di deposito bank digital $BBSI , antisipasi koreksi harga $BBRI dan $BBCA…",
      "replies": 0,
      "dislikes": 0,
      "fullName": "Yaih",
      "isPinned": false,
      "username": "herwindyowarihkusumo",
      "createdAt": "2026-08-02 17:28:02",
      "isOfficial": false
    }
  ],
  "symbol": "BBCA",
  "provider": "stockbit"
}
GETProfile/v1/finance:stockbit/profileProfil emiten: deskripsi usaha, sektor, sub-sektor, dan indeks yang diikuti.

Parameters

symbolstringrequired
IDX ticker, e.g. BBCA

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/profile?symbol=BBCA" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "name": "Bank Central Asia Tbk.",
  "type": "Saham",
  "sector": "Keuangan",
  "symbol": "BBCA",
  "country": "ID",
  "iconUrl": "https://assets.stockbit.com/logos/companies/BBCA.png",
  "indexes": [
    "TRADINGLIMIT",
    "IDXVESTA28",
    "ECONOMIC30",
    "DAYTRADE",
    "PRIMBANK10",
    "IDXLQ45LCL"
  ],
  "exchange": "IDX",
  "provider": "stockbit",
  "followers": 3303290,
  "subSector": "Bank",
  "tradeable": true,
  "background": "PT Bank Central Asia Tbk. atau BBCA dalam bidang usaha bank umum. Anak perusahaan diantaranya: PT BCA Finance (Pembiayaan Konsumen, Sewa Guna Usaha dan Anjak Piutang), BCA Finance Limited (Money Lending- Jasa Pengiriman Uang), PT Bank BCA Syariah (Perbankan Syariah), PT BCA Sekuritas (Penjamin Emisi Efek dan Pialang Perdagangan Saham), dan PT Asuransi Umum BCA (Asuransi Umum atau Asuransi Kerugian).Pada 2017 BCA mendirikan PT Central Capital Ventura (CCV) guna mengikuti inovasi layanan keuangan berbasis digital. Produk dan layanan Perseroan yaitu: produk simpanan, layanan transaksi perbankan, perbankan elektronik, layanan cash management, kartu kredit, bancassurance, produk investasi, fasilitas kredit, Bank garansi, fasilitas ekspor impor dan fasilitas valuta asing. Pada 2017 Jumlah kantor wilayah ada 12 terdiri dari (146 kantor cabang utama, 856 kantor cabang pembantu dan 244 kantor kas) tersebar di seluruh Indonesia, kantor non wilayah (1 kantor cabang utama) dan satu kantor perwakilan di Jakarta pusat.",
  "listingStatus": "STATUS_ACTIVE"
}
GETGlossary/v1/finance:stockbit/glossaryKamus istilah investasi: definisi, rumus, dan penjelasan. Bisa disaring per huruf atau kata kunci.

Parameters

letterenumoptional
Fetch one initial letter only. Default: every letter Values: a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z.
qstringoptional
Keep only terms whose name or definition contains this
countnumberoptional
Cap the list. Default: everything found

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/glossary?letter=a&q=rasio&count=20" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 16,
  "items": [
    {
      "id": 360,
      "slug": "absolute-valuation-",
      "term": "Absolute Valuation",
      "letter": "a",
      "definition": "Absolute valuation merupakan salah satu metode valuasi yang digunakan oleh investor untuk menaksir nilai intrinsik saham dengan menghitung akumulasi nilai aset ataupun potensi arus…"
    },
    {
      "id": 176,
      "slug": "accrued-expenses",
      "term": "Accrued Expense",
      "letter": "a",
      "definition": "Accrued expenses adalah biaya yang telah dikeluarkan perusahaan, tetapi belum dibayar tunai. Biaya ini umumnya termasuk dalam kewajiban lancar dalam neraca perusahaan."
    },
    {
      "id": 253,
      "slug": "agio-saham",
      "term": "Agio Saham",
      "letter": "a",
      "definition": "Selisih antara nilai nominal (par) saham dan harga yang dibayar investor untuk itu, biasanya akibat IPO atau rights issue."
    }
  ],
  "letter": "a",
  "provider": "stockbit",
  "lettersFetched": 1
}
GETUser/v1/finance:stockbit/userProfil publik anggota: nama, avatar, jumlah follower, following, dan ide.

Parameters

usernamestringrequired
Member handle, without the @

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/user?username=ramaabd" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ideas": 105,
  "fullName": "Rama Abdurachman",
  "joinedAt": "2023-02-20T13:16:45Z",
  "provider": "stockbit",
  "username": "ramaabd",
  "avatarUrl": "https://avatar.stockbit.com/1875309/2699292a-c1a3-4d7a-b366-85194701f22c-stockbit_image1768074830129.jpeg",
  "followers": 12,
  "following": 13,
  "isVerified": false,
  "avatarThumbnailUrl": "https://avatar.stockbit.com/thumb/1875309/2699292a-c1a3-4d7a-b366-85194701f22c-stockbit_image1768074830129.jpeg"
}
GETPost/v1/finance:stockbit/postSatu postingan berdasarkan id permalink-nya.

Parameters

idstringrequired
Numeric post id

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/post?id=34411341" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": 34411341,
  "url": "https://stockbit.com/post/34411341",
  "isPro": false,
  "likes": 0,
  "images": [
    "https://stream-asset.stockbit.com/0b190f1b-c369-435a-96f2-c98607643e87_stream.jpg",
    "https://stream-asset.stockbit.com/2d818ffe-0fd2-4842-a673-66b07f7f919c_stream.jpg",
    "https://stream-asset.stockbit.com/e7a1aa89-dbec-4887-a58e-97997e374146_stream.jpg"
  ],
  "content": "platform sebelah bagus juga ya ngasih summary ini , sama flow dll\n.\nsemoga stockbit bisa nyusul 🤣\n.\ncapek Gonta ganti apps buat validasi move investasi\n.\n$BMRI $BBCA $BBRI",
  "country": "ID",
  "replies": 0,
  "reposts": 0,
  "dislikes": 0,
  "fullName": "Rama Abdurachman",
  "provider": "stockbit",
  "username": "ramaabd",
  "createdAt": "2026-08-02 17:16:19",
  "isOfficial": false
}
GETTrending/v1/finance:stockbit/trendingThe ten tickers Stockbit's own community is moving on right now.

Parameters

This endpoint takes no parameters.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/trending" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 10,
  "items": [
    {
      "last": 825,
      "name": "Petrindo Jaya Kreasi Tbk.",
      "type": "Saham",
      "change": -15,
      "symbol": "CUAN",
      "country": "ID",
      "notation": [],
      "companyId": "1000003994",
      "tradeable": true,
      "marginInfo": null,
      "dayTradeInfo": null,
      "changePercent": -1.79,
      "listingStatus": "STATUS_ACTIVE",
      "tradingLimitInfo": null,
      "unusualMarketActivity": false
    },
    {
      "last": 2010,
      "name": "Chandra Asri Pacific Tbk.",
      "type": "Saham",
      "change": -50,
      "symbol": "TPIA",
      "country": "ID",
      "notation": [],
      "companyId": "432",
      "tradeable": true,
      "corpAction": {
        "text": "Perusahaan Memiliki Corporate Action",
        "active": false,
        "iconUrl": "https://assets.stockbit.com/images/corp_action_event_icon.svg"
      },
      "marginInfo": null,
      "dayTradeInfo": null,
      "changePercent": -2.43,
      "listingStatus": "STATUS_ACTIVE",
      "tradingLimitInfo": null,
      "unusualMarketActivity": false
    },
    {
      "last": 102,
      "name": "Gaya Abadi Sempurna Tbk.",
      "type": "Saham",
      "change": 14,
      "symbol": "SLIS",
      "country": "ID",
      "notation": [],
      "companyId": "1000002486",
      "tradeable": true,
      "corpAction": {
        "text": "Perusahaan Memiliki Corporate Action",
        "active": false,
        "iconUrl": "https://assets.stockbit.com/images/corp_action_event_icon.svg"
      },
      "marginInfo": null,
      "dayTradeInfo": null,
      "changePercent": 15.91,
      "listingStatus": "STATUS_ACTIVE",
      "tradingLimitInfo": null,
      "unusualMarketActivity": false
    }
  ],
  "provider": "stockbit"
}
GETQuote/v1/finance:stockbit/quoteAn instrument snapshot read from the JSON API — the same data as symbol, far cheaper.

Parameters

symbolstringrequired
IDX ticker or index code, e.g. BBCA or IHSG

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/quote?symbol=BBCA" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "last": 6350,
  "name": "Bank Central Asia Tbk.",
  "tabs": [
    "stream",
    "news",
    "keystats",
    "analysis",
    "financials",
    "fundachart"
  ],
  "type": "Saham",
  "change": -25,
  "sector": "Keuangan",
  "symbol": "BBCA",
  "volume": 56953500,
  "bestBid": {
    "price": 6325,
    "volume": 281900
  },
  "country": "ID",
  "iconUrl": "https://assets.stockbit.com/logos/companies/BBCA.png",
  "indexes": [
    "TRADINGLIMIT",
    "IDXVESTA28",
    "ECONOMIC30",
    "DAYTRADE",
    "PRIMBANK10",
    "IDXLQ45LCL"
  ],
  "catalogs": [
    {
      "id": "20",
      "name": "Bank",
      "type": "sub_sector",
      "symbol": "Bank",
      "parentId": "3"
    },
    {
      "id": "1000004658",
      "name": "Day Trade",
      "type": "indeks",
      "symbol": "DAYTRADE",
      "parentId": "88"
    },
    {
      "id": "5",
      "name": "Papan Utama",
      "type": "listing-board",
      "symbol": "Papan Utama",
      "parentId": "89"
    },
    {
      "id": "1000005139",
      "name": "TRADINGLIMIT",
      "type": "indeks",
      "symbol": "TRADINGLIMIT",
      "parentId": "88"
    },
    {
      "id": "1000004998",
      "name": "IDXVESTA28",
      "type": "indeks",
      "symbol": "IDXVESTA28",
      "parentId": "88"
    },
    {
      "id": "1000004908",
      "name": "ECONOMIC30",
      "type": "indeks",
      "symbol": "ECONOMIC30",
      "parentId": "88"
    }
  ],
  "exchange": "IDX",
  "notation": [],
  "provider": "stockbit",
  "bestOffer": {
    "price": 6350,
    "volume": 2512000
  },
  "companyId": "54",
  "followers": 0,
  "subSector": "Bank",
  "tradeable": true,
  "updatedAt": "2026-08-14T08:00:03+07:00",
  "corpAction": {
    "text": "Perusahaan Memiliki Corporate Action",
    "active": false,
    "iconUrl": "https://assets.stockbit.com/images/corp_action_event_icon.svg"
  },
  "marginInfo": null,
  "tradingDate": "14 Aug 2026",
  "tradingTime": "Fri 16:14",
  "averageValue": 230731634,
  "dayTradeInfo": null,
  "marketStatus": "close",
  "changePercent": -0.39,
  "listingStatus": "STATUS_ACTIVE",
  "previousClose": 6375,
  "marketTimeLeft": 148537,
  "tradingLimitInfo": null,
  "dayTradeMultiplier": 5,
  "unusualMarketActivity": false
}
GETUser Stream/v1/finance:stockbit/user-streamEvery idea one member has posted.

Parameters

usernamestringrequired
Member handle, without the @
countnumberoptional
Cap the list. Default: every post the window carries (30)

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stockbit/user-stream?username=ramaabd&count=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 10,
  "items": [
    {
      "id": 34625484,
      "url": "https://stockbit.com/post/34625484",
      "isPro": false,
      "likes": 0,
      "views": 0,
      "isNews": false,
      "shares": 0,
      "content": "mimpi basah sih 1400 wkwk, 1600 aja udah murah",
      "country": "ID",
      "isChart": false,
      "replies": 0,
      "reposts": 0,
      "dislikes": 0,
      "fullName": "Rama Abdurachman",
      "isAuthor": false,
      "isPinned": false,
      "isReport": false,
      "username": "ramaabd",
      "avatarUrl": "https://avatar.stockbit.com/thumb/1875309/2699292a-c1a3-4d7a-b366-85194701f22c-stockbit_image1768074830129.jpeg",
      "createdAt": "2026-08-07 09:59:11",
      "isOfficial": false,
      "isTrending": false,
      "isVerified": false,
      "parentPostId": 34617872,
      "commenterType": "COMMENTER_TYPE_EVERYONE",
      "isUnavailable": false,
      "userPrivilege": 0,
      "createdDisplay": "7 Aug 26, 09:59",
      "verifiedStatus": "VERIFIED_STATUS_IDENTITY",
      "repliesDisabled": false
    }
  ],
  "provider": "stockbit",
  "username": "ramaabd"
}

Related APIs

More in finance

Pluang

finance/pluang

Data pasar Pluang lintas aset: order book, running trade, tradebook dan ringkasan broker per saham IDX, plus saham Amerika, emas, kripto, sinyal analis dan berita.

1.2M calls·1d cache

IDX (Bursa Efek Indonesia)

finance/idx

Data Bursa Efek Indonesia: ringkasan saham & indeks, top movers, broker, emiten, laporan keuangan, berita, dan passthrough ke ratusan endpoint /primary/.

516K calls·1d cache

TradingView

finance/tradingview

Screener, charts, technical indicators, fundamentals, news and the macro calendar across 16 markets — Indonesian equities, US equities, crypto, forex and futures.

215.3K calls·1d cache

Binance Futures

finance/binance-futures

USD-M perpetual futures market data: funding, premium index, open interest, long/short ratios, candles and depth.

38.4K calls·10m cache

Bybit

finance/bybit

Bybit v5 market data: candles, 5-minute open interest and account ratios with cursor pagination, funding history and instrument specs.

22.3K calls·10m cache

Yahoo Finance

finance/yahoo-finance

Global quotes, fundamentals, statements, options, earnings, ownership and analyst coverage. Jakarta listings via the .JK suffix.

30.8K calls·5m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026