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

IDX Channel

Indonesian market news and live IDX market data — articles by channel, date and tag, plus stock quotes, indices and currency rates.

Endpoints
14
Requests
402
Updated
6 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • stocksnot measured
  • stocks-allnot measured
  • quotenot measured
  • tickersnot measured
  • indicesnot measured
+ 9 more endpointsShow less
  • currenciesnot measured
  • market-snapshotnot measured
  • latestnot measured
  • searchnot measured
  • archivenot measured
  • relatednot measured
  • feednot measured
  • syndicationnot measured
  • detailnot measured
no measurements yetdaily 01:00 WIB

Playground

14 endpoints
GET/v1/finance:idxchannel/stocks1m cache3 paramschecking key…
Parameters
pagenumber

Page number, 10 rows per page. Default 1

sortByenum

Sort column. Omit for the upstream's default order

sortenum

Sort direction. Only applied together with sortBy

·
Response
EXAMPLE
{
  "page": 1,
  "sort": null,
  "count": 10,
  "items": [
    {
      "code": "AADI",
      "open": 9725,
      "close": 9900,
      "change": 175,
      "volume": 10192200,
      "updatedAt": "2026-08-20T10:55:10.000Z",
      "changePercent": 1.8
    },
    {
      "code": "AALI",
      "open": 7750,
      "close": 8000,
      "change": 250,
      "volume": 2770700,
      "updatedAt": "2026-08-20T10:55:10.000Z",
      "changePercent": 3.23
    },
    {
      "code": "ABDA",
      "open": 3810,
      "close": 3810,
      "change": 0,
      "volume": 1000,
      "updatedAt": "2026-08-20T10:55:10.000Z",
      "changePercent": 0
    }
  ],
  "total": 861,
  "sortBy": null,
  "dataset": "stocks",
  "hasMore": true,
  "nextPage": 2,
  "provider": "idxchannel"
}

Code examples

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

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

const data = await client.run("finance:idxchannel", "stocks", {
  "page": 1,
  "sortBy": "volume",
  "sort": "desc"
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/stocks?page=1&sortBy=volume&sort=desc" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

14 endpoints · plain text
GETStock Table/v1/finance:idxchannel/stocksPaged table of every listed stock, sortable by volume or change percent.

Parameters

pagenumberoptional
Page number, 10 rows per page. Default 1
sortByenumoptional
Sort column. Omit for the upstream's default order Values: volume, changePercent.
sortenumoptional
Sort direction. Only applied together with sortBy Values: asc, desc.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/stocks?page=1&sortBy=volume&sort=desc" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "sort": null,
  "count": 10,
  "items": [
    {
      "code": "AADI",
      "open": 9725,
      "close": 9900,
      "change": 175,
      "volume": 10192200,
      "updatedAt": "2026-08-20T10:55:10.000Z",
      "changePercent": 1.8
    },
    {
      "code": "AALI",
      "open": 7750,
      "close": 8000,
      "change": 250,
      "volume": 2770700,
      "updatedAt": "2026-08-20T10:55:10.000Z",
      "changePercent": 3.23
    },
    {
      "code": "ABDA",
      "open": 3810,
      "close": 3810,
      "change": 0,
      "volume": 1000,
      "updatedAt": "2026-08-20T10:55:10.000Z",
      "changePercent": 0
    }
  ],
  "total": 861,
  "sortBy": null,
  "dataset": "stocks",
  "hasMore": true,
  "nextPage": 2,
  "provider": "idxchannel"
}
GETAll Stocks/v1/finance:idxchannel/stocks-allEvery listed stock in one call, with last price, change and timestamp.

Parameters

searchstringoptional
Filter by ticker code, case-insensitive substring

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/stocks-all?search=BBC" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 12,
  "items": [
    {
      "code": "BBCA",
      "close": 6400,
      "change": 100,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 1.59
    },
    {
      "code": "BBHI",
      "close": 905,
      "change": 0,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 0
    },
    {
      "code": "BBKP",
      "close": 56,
      "change": 1,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 1.82
    },
    {
      "code": "BBLD",
      "close": 685,
      "change": 5,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 0.72
    },
    {
      "code": "BBMD",
      "close": 1950,
      "change": 5,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 0.26
    },
    {
      "code": "BBNI",
      "close": 3590,
      "change": 30,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 0.84
    },
    {
      "code": "BBRI",
      "close": 3140,
      "change": 60,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 1.95
    },
    {
      "code": "BBRM",
      "close": 115,
      "change": 0,
      "updatedAt": "2026-08-20T10:50:08.000Z",
      "changePercent": 0
    }
  ],
  "search": "BB",
  "dataset": "stocks-all",
  "provider": "idxchannel"
}
GETStock Quote/v1/finance:idxchannel/quoteOne stock's session: open, high, low, close, previous and change.

Parameters

codestringrequired
Ticker code, with or without case

Request

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

Example response

{
  "low": 3090,
  "code": "BBRI",
  "high": 3140,
  "open": 3100,
  "close": 3140,
  "change": 60,
  "dataset": "quote",
  "previous": 3080,
  "provider": "idxchannel",
  "updatedAt": "2026-08-20T10:50:08.000Z",
  "changePercent": 1.95
}
GETTicker List/v1/finance:idxchannel/tickersEvery ticker code IDX Channel tracks.

Parameters

searchstringoptional
Filter by code, case-insensitive substring

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/tickers?search=BB" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 12,
  "items": [
    "BBCA",
    "BBHI",
    "BBKP",
    "BBLD",
    "BBMD",
    "BBNI",
    "BBRI",
    "BBRM"
  ],
  "search": "BB",
  "dataset": "tickers",
  "provider": "idxchannel"
}
GETMarket Indices/v1/finance:idxchannel/indicesIndonesian indices with last value, change and change percent.

Parameters

codestringoptional
Filter to one index code

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/indices?code=IHSG" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "code": "IHSG",
  "count": 1,
  "items": [
    {
      "code": "IHSG",
      "close": 6501.59,
      "change": 107.46,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.68
    }
  ],
  "dataset": "indices",
  "provider": "idxchannel"
}
GETCurrency Rates/v1/finance:idxchannel/currenciesForeign currency rates against the rupiah.

Parameters

currencystringoptional
Filter to one currency, by its three-letter name

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/currencies?currency=USD" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 1,
  "items": [
    {
      "code": "USDRP",
      "rate": 17746,
      "currency": "USD",
      "updatedAt": "2026-08-20T10:45:06.000Z"
    }
  ],
  "dataset": "currencies",
  "currency": "USD",
  "provider": "idxchannel"
}
GETMarket Snapshot/v1/finance:idxchannel/market-snapshotIndices and currency rates in a single call.

Parameters

xstringoptional
Unused; this endpoint takes no input

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/market-snapshot?x=" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "dataset": "market-snapshot",
  "indices": [
    {
      "code": "IHSG",
      "close": 6501.59,
      "change": 107.46,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.68
    },
    {
      "code": "LQ45",
      "close": 638.74,
      "change": 11.27,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.8
    },
    {
      "code": "IDX30",
      "close": 356.26,
      "change": 5.32,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.52
    },
    {
      "code": "MNC36",
      "close": 275.97,
      "change": 4.62,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.7
    },
    {
      "code": "JII",
      "close": 390.27,
      "change": 9.35,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 2.45
    },
    {
      "code": "IDX80",
      "close": 96.11,
      "change": 1.89,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 2
    },
    {
      "code": "IDXHIDIV20",
      "close": 432.62,
      "change": 5.05,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.18
    },
    {
      "code": "IDXG30",
      "close": 121.26,
      "change": 1.36,
      "updatedAt": "2026-08-20T10:57:12.000Z",
      "changePercent": 1.13
    }
  ],
  "provider": "idxchannel",
  "currencies": [
    {
      "rate": 17746,
      "currency": "USD"
    },
    {
      "rate": 2262,
      "currency": "HKD"
    },
    {
      "rate": 12648,
      "currency": "AUD"
    },
    {
      "rate": 2640,
      "currency": "CNY"
    }
  ],
  "indexCount": 10,
  "currencyCount": 4
}
GETLatest Articles/v1/finance:idxchannel/latestNewest articles, optionally scoped to one channel or media type.

Parameters

channelenumoptional
Channel to scope to. Omit for all channels Values: market-news, economics, banking, syariah, ecotainment, milenomic, inspirator, economia, news, technology.
typeenumoptional
Media type. Omit for all types Values: news, video, photo.
pagenumberoptional
Page number, 9 items per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/latest?channel=market-news&type=news&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "type": null,
  "count": 9,
  "items": [
    {
      "id": "393077",
      "url": "https://www.idxchannel.com/banking/citi-indonesia-raup-laba-bersih-rp994-miliar-ditopang-pertumbuhan-kredit",
      "slug": "citi-indonesia-raup-laba-bersih-rp994-miliar-ditopang-pertumbuhan-kredit",
      "type": "news",
      "image": "https://img.idxchannel.com/media/800/images/idx/2022/04/26/Citi_Indonesia.jpg",
      "title": "Citi Indonesia Raup Laba Bersih Rp994 Miliar Ditopang Pertumbuhan Kredit",
      "source": "idxchannel.com",
      "category": "BANKING",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2022/04/26/Citi_Indonesia.jpg",
      "publishedAt": "2026-08-20T09:35:00.000Z"
    },
    {
      "id": "393058",
      "url": "https://www.idxchannel.com/banking/bank-jatim-bjtm-perkuat-kerja-sama-dan-layanan-perbankan-di-dinas-pendidikan-se-jawa-timur",
      "slug": "bank-jatim-bjtm-perkuat-kerja-sama-dan-layanan-perbankan-di-dinas-pendidikan-se-jawa-timur",
      "type": "news",
      "image": "https://img.idxchannel.com/media/800/images/idx/2026/08/20/bank_jatim_bjtm.jpg",
      "title": "Bank Jatim (BJTM) Perkuat Kerja Sama dan Layanan Perbankan di Dinas Pendidikan se-Jawa Timur",
      "source": "idxchannel.com",
      "category": "BANKING",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2026/08/20/bank_jatim_bjtm.jpg",
      "publishedAt": "2026-08-20T08:10:00.000Z"
    }
  ],
  "channel": "banking",
  "dataset": "latest",
  "hasMore": true,
  "nextPage": 2,
  "provider": "idxchannel"
}
GETArticle Search/v1/finance:idxchannel/searchSearch articles by keyword, channel and media type.

Parameters

qstringrequired
Search keyword
channelenumoptional
Channel to scope to. Omit for all channels Values: market-news, economics, banking, syariah, ecotainment, milenomic, inspirator, economia, news, technology.
typeenumoptional
Media type. Omit for all types Values: news, video, photo.
pagenumberoptional
Page number, 9 items per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/search?q=saham&channel=market-news&type=news&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "type": null,
  "count": 9,
  "items": [
    {
      "id": "393078",
      "url": "https://www.idxchannel.com/market-news/10-saham-top-gainer-perdagangan-kamis-20-agustus-2026-ada-kija-hingga-psab",
      "slug": "10-saham-top-gainer-perdagangan-kamis-20-agustus-2026-ada-kija-hingga-psab",
      "type": "news",
      "image": "https://img.idxchannel.com/media/800/images/idx/2026/02/16/Saham_naik_-_Freepik_16_Feb_26.jpg",
      "title": "10 Saham Top Gainer Perdagangan Kamis 20 Agustus 2026, Ada KIJA hingga PSAB",
      "source": "idxchannel.com",
      "category": "MARKET NEWS",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2026/02/16/Saham_naik_-_Freepik_16_Feb_26.jpg",
      "publishedAt": "2026-08-20T09:36:00.000Z"
    },
    {
      "id": "393072",
      "url": "https://www.idxchannel.com/market-news/ihsg-ditutup-tembus-level-6500-saham-ammn-kija-terbang",
      "slug": "ihsg-ditutup-tembus-level-6500-saham-ammn-kija-terbang",
      "type": "news",
      "image": "https://img.idxchannel.com/media/800/images/idx/2025/11/07/ihsg_hijau.jpg",
      "title": "IHSG Ditutup Tembus Level 6.500, Saham AMMN-KIJA Terbang",
      "source": "idxchannel.com",
      "category": "MARKET NEWS",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2025/11/07/ihsg_hijau.jpg",
      "publishedAt": "2026-08-20T09:18:00.000Z"
    }
  ],
  "query": "ihsg",
  "channel": null,
  "dataset": "search",
  "hasMore": true,
  "nextPage": 2,
  "provider": "idxchannel"
}
GETArticle Archive/v1/finance:idxchannel/archiveArticles published on a given date, filterable by channel.

Parameters

datestringoptional
Archive date as YYYY-MM-DD. Default today in Jakarta time
channelenumoptional
Channel to scope to. Omit for all channels Values: market-news, economics, banking, syariah, ecotainment, milenomic, inspirator, economia, news, technology.
pagenumberoptional
Page number, 6 items per page. Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/archive?date=2026-08-20&channel=economics&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "date": "2026-08-19",
  "page": 1,
  "count": 6,
  "items": [
    {
      "url": "https://www.idxchannel.com/economics/ekonom-nilai-pengalihan-utang-whoosh-ke-kemenkeu-bukan-solusi-bebas-risiko-fiskal",
      "title": "Ekonom Nilai Pengalihan Utang Whoosh ke Kemenkeu Bukan Solusi Bebas Risiko Fiskal",
      "source": "idxchannel.com",
      "caption": "Ekonom Nilai Pengalihan Utang Whoosh ke Kemenkeu Bukan Solusi Bebas Risiko Fiskal. (Foto: iNews Media Group)",
      "category": "ECONOMICS",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2026/03/23/Whoosh.jpeg",
      "publishedAt": "2026-08-19T16:00:00.000Z"
    },
    {
      "url": "https://www.idxchannel.com/economics/pemerintah-siapkan-pendataan-rumah-rusak-dan-lahan-huntap-bagi-korban-terdampak-gempa-ntt",
      "title": "Pemerintah Siapkan Pendataan Rumah Rusak dan Lahan Huntap bagi Korban Terdampak Gempa NTT",
      "source": "idxchannel.com",
      "caption": "Pemerintah Siapkan Pendataan Rumah Rusak dan Lahan Huntap bagi Korban Terdampak Gempa NTT. (Foto Istimewa)",
      "category": "ECONOMICS",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2026/08/15/Gempa_Bumi_NTT-3.jpg",
      "publishedAt": "2026-08-19T15:30:00.000Z"
    }
  ],
  "channel": null,
  "dataset": "archive",
  "hasMore": true,
  "nextPage": 2,
  "provider": "idxchannel"
}
GETRelated Articles/v1/finance:idxchannel/relatedArticles tagged with a ticker code or keyword.

Parameters

qstringrequired
Ticker code or tag keyword

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/related?q=bbca" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 6,
  "items": [
    {
      "id": "393009",
      "url": "https://www.idxchannel.com/market-news/10-saham-dengan-dividen-yield-jumbo-dan-valuasi-menarik-bssr-hingga-bmri",
      "type": "news",
      "title": "10 Saham dengan Dividen Yield Jumbo dan Valuasi Menarik, BSSR hingga BMRI",
      "source": "idxchannel.com",
      "caption": "10 Saham dengan Dividen Yield Jumbo dan Valuasi Menarik, BSSR hingga BMRI. (Foto: iStock)",
      "category": "MARKET NEWS",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2026/06/08/dividen_-_istock_-_8_June_26_-.jpg",
      "publishedAt": "2026-08-20T03:07:00.000Z"
    },
    {
      "id": "392901",
      "url": "https://www.idxchannel.com/market-news/bi-tahan-suku-bunga-di-level-575-persen-simak-gerak-saham-bank",
      "type": "news",
      "title": "BI Tahan Suku Bunga di Level 5,75 Persen, Simak Gerak Saham Bank",
      "source": "idxchannel.com",
      "caption": "BI Tahan Suku Bunga di Level 5,75 Persen, Simak Gerak Saham Bank. (Foto: Magnific)",
      "category": "MARKET NEWS",
      "thumbnail": "https://img.idxchannel.com/media/439/images/idx/2025/10/20/gedung_bank_-_freepik_20_okt_25.jpg",
      "publishedAt": "2026-08-19T07:57:00.000Z"
    }
  ],
  "query": "bbri",
  "dataset": "related",
  "provider": "idxchannel"
}
GETNewsroom Feed/v1/finance:idxchannel/feedNewsroom RSS, the one listing that carries the numeric content id.

Parameters

limitnumberoptional
Maximum items to return. Default 10

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/feed?limit=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 5,
  "items": [
    {
      "id": "393087",
      "url": "https://www.idxchannel.com/ecotainment/atur-jadwal-liburan-lebih-leluasa-dengan-layanan-paylater",
      "image": "https://img.idxchannel.com/media/439/images/idx/2026/08/20/Liburan_Lebih_Leluasa_dengan_Layanan_Paylater.png",
      "title": "Atur Jadwal Liburan Lebih Leluasa dengan Layanan Paylater",
      "source": "idxchannel.com",
      "summary": "Atur Jadwal Liburan Lebih Leluasa dengan Layanan Paylater. (Foto: iNews Media Group)",
      "category": "ECOTAINMENT",
      "publishedAt": "2026-08-20T11:23:00.000Z"
    },
    {
      "id": "393086",
      "url": "https://www.idxchannel.com/news/1378-sekolah-terdampak-gempa-m77-di-ntt-pembelajaran-116328-murid-terganggu",
      "image": "https://img.idxchannel.com/media/439/images/idx/2026/08/20/Screen_Shot_2026-08-20_at_16_46_44.jpg",
      "title": "1.378 Sekolah Terdampak Gempa M7,7 di NTT, Pembelajaran 116.328 Murid Terganggu",
      "source": "idxchannel.com",
      "summary": "1.378 Sekolah Terdampak Gempa M7,7 di NTT, Pembelajaran 116.328 Murid Terganggu. (Foto: iNews Media Group)",
      "category": "News",
      "publishedAt": "2026-08-20T11:18:00.000Z"
    }
  ],
  "dataset": "feed",
  "provider": "idxchannel"
}
GETChannel Feed/v1/finance:idxchannel/syndicationPer-channel syndication feed with a wider image rendition.

Parameters

channelenumrequired
Syndication channel Values: market-news, economics, banking, syariah, ecotainment, milenomic, inspirator, economia, news, technology, idxtainment, the-founder, video, foto, idxc-live.
limitnumberoptional
Maximum items to return. Default 10

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/syndication?channel=market-news&limit=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 5,
  "items": [
    {
      "url": "https://www.idxchannel.com/video-1/easy-ksei-hadir-kini-ikut-rups-bisa-secara-online",
      "image": "https://img.idxchannel.com/media/439/images/idx/2022/06/21/easy_case.jpg",
      "title": "EASY KSEI HADIR, KINI IKUT RUPS BISA SECARA ONLINE",
      "source": "idxchannel.com",
      "summary": "EASY KSEI HADIR, KINI IKUT RUPS BISA SECARA ONLINE.(SUMBER: IDX CHANNEL)",
      "category": "VIDEO",
      "publishedAt": "2022-06-21T07:28:00.000Z"
    },
    {
      "url": "https://www.idxchannel.com/video-1/mendag-pergi-sidak-kepasar",
      "image": "https://img.idxchannel.com/media/439/images/idx/2022/06/20/maxresdefault.jpg",
      "title": "MENDAG PERGI SIDAK KEPASAR",
      "source": "idxchannel.com",
      "summary": "MENDAG PERGI SIDAK KEPASAR, (SUMBER: IDX CHANNEL)",
      "category": "VIDEO",
      "publishedAt": "2022-06-16T11:34:00.000Z"
    },
    {
      "url": "https://www.idxchannel.com/video-1/melirik-potensi-bisnis-harum-energy-di-2022",
      "image": "https://img.idxchannel.com/media/439/images/idx/2022/04/25/MELIRIK_POTENSI_BISNIS_HARUM_ENERGY_DI_2022.JPG",
      "title": "MELIRIK POTENSI BISNIS HARUM ENERGY DI 2022",
      "source": "idxchannel.com",
      "summary": "MELIRIK POTENSI BISNIS HARUM ENERGY DI 2022 (SUMBER-IDX CHANNEL)",
      "category": "VIDEO",
      "publishedAt": "2022-04-25T04:49:00.000Z"
    }
  ],
  "channel": "video",
  "dataset": "syndication",
  "provider": "idxchannel"
}
GETArticle Detail/v1/finance:idxchannel/detailOne article with body text, tags and editorial credits.

Parameters

urlstringrequired
Full article URL

Request

curl -X GET "https://api.zpi.web.id/v1/finance:idxchannel/detail?url=https%3A%2F%2Fwww.idxchannel.com%2Fmarket-news%2Fbbca-kucurkan-dividen-interim-rp307-triliun-kuartal-iii-2026" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://www.idxchannel.com/market-news/bbca-kucurkan-dividen-interim-rp307-triliun-kuartal-iii-2026",
  "tags": [
    "BBCA",
    "Dividen Interim",
    "BCA"
  ],
  "image": "https://img.idxchannel.com/media/700/images/idx/2024/07/26/BBCA_-_BCA_gedung_-_freepik.jpg",
  "title": "BBCA Kucurkan Dividen Interim Rp3,07 Triliun Kuartal III-2026",
  "author": "Anggie Ariesta",
  "source": "idxchannel.com",
  "content": "IDXChannel – PT Bank Central Asia Tbk (BBCA) menggelontorkan dana sebesar Rp3,07 triliun untuk pembagian dividen interim kuartal III-2026. Aksi korporasi ini merupakan bagian dari …",
  "dataset": "article",
  "editors": [
    {
      "url": "https://www.idxchannel.com/author/anggie-ariesta",
      "name": "Anggie Ariesta",
      "role": "Reporter"
    },
    {
      "url": "https://www.idxchannel.com/author/dhera-arizona-pratiwi-editor",
      "name": "Dhera Arizona Pratiwi",
      "role": "Editor"
    }
  ],
  "summary": "PT Bank Central Asia Tbk (BBCA) menggelontorkan dana sebesar Rp3,07 triliun untuk pembagian dividen interim kuartal III-2026.",
  "category": "Market news",
  "provider": "idxchannel",
  "updatedAt": "2026-08-19T21:04:00.000Z",
  "wordCount": 169,
  "publishedAt": "2026-08-19T21:04:00.000Z"
}

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.

23.1K 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.

52.6K calls·1d cache

Stockbit

finance/stockbit

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

17.4K calls·1d cache

Binance Vision

finance/binance-vision

Binance's public bulk archive: klines, 5-minute open-interest and long/short metrics, funding, book depth and liquidations, back to 2017.

634 calls·1d cache

Yahoo Finance

finance/yahoo-finance

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

12.7K calls·5m 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/.

73.7K calls·1d cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026