NAV

Sama AlThawaf - Public API v1.0.0

Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.

Base URLs:

v1

get__api_v1_account_balance

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
        "key-api": []string{"{{key-api}}"},
        "userid": []string{"thawaf"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "http://{{localhost}}/api/v1/account/balance", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

const headers = {
  'Accept':'application/json',
  'key-api':'{{key-api}}',
  'userid':'thawaf'
};

fetch('http://{{localhost}}/api/v1/account/balance',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

GET /api/v1/account/balance

Get Server Status

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none

Example responses

Responses

Status Meaning Description Schema
200 OK Successful response None

Response Schema

v1 > Credit

post__api_v1_mobile_topup

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "key-api": []string{"3b7375a688b1820b016224646365e127de125ff0"},
        "userid": []string{"thawaf"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "http://{{localhost}}/api/v1/mobile/topup", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}
const inputBody = '{
  "transactionID": "BES-2022032101",
  "customerID": "08127064387",
  "packageCode": "telkomseldataumroh01",
  "notes": "Inject - event umroh BES Thawaf"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'key-api':'3b7375a688b1820b016224646365e127de125ff0',
  'userid':'thawaf'
};

fetch('http://{{localhost}}/api/v1/mobile/topup',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

POST /api/v1/mobile/topup

Top Up

Body parameter

{
  "transactionID": "BES-2022032101",
  "customerID": "08127064387",
  "packageCode": "telkomseldataumroh01",
  "notes": "Inject - event umroh BES Thawaf"
}

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none
body body object false none

Example responses

201 Response

{
  "code": 201,
  "status": "Pending",
  "data": {
    "action": "Top Up",
    "balance": 341250,
    "category": "Mobile",
    "createdAt": "2022-02-22T08:02:01.800Z",
    "customerID": "+6289634609305",
    "id": "20220210070",
    "message": null,
    "notes": "ini notes",
    "product": {
      "category": "Mobile",
      "status": "Active",
      "updatedAt": "2022-01-31T12:17:30.842Z",
      "type": "Credit",
      "denom": "5.000",
      "price": 5800,
      "createdAt": "2022-01-12T02:15:37.247Z",
      "detail": "Pulsa Telkomsel 5.000",
      "operator": "Telkomsel",
      "code": "telkomsel5k",
      "availability": "Platform"
    },
    "status": "Pending",
    "subTotal": 5800,
    "transactionID": "202002222",
    "type": "Credit",
    "userID": "thawaf"
  }
}

Responses

Status Meaning Description Schema
201 Created Created Inline

Response Schema

Response Headers

Status Header Type Format Description
201 X-Powered-By string none
201 Access-Control-Allow-Origin string none
201 Content-Type string none
201 Content-Length integer none
201 ETag string none
201 Date string none
201 Connection string none
201 Keep-Alive string none

get__api_v1_mobile_detail

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
        "key-api": []string{"3b7375a688b1820b016224646365e127de125ff0"},
        "userid": []string{"thawaf"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "http://{{localhost}}/api/v1/mobile/detail", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

const headers = {
  'Accept':'application/json',
  'key-api':'3b7375a688b1820b016224646365e127de125ff0',
  'userid':'thawaf'
};

fetch('http://{{localhost}}/api/v1/mobile/detail',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

GET /api/v1/mobile/detail

Get Detail Transaction

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none
transactionID query string false none

Example responses

Responses

Status Meaning Description Schema
200 OK Successful response None

Response Schema

v1 > Credit > Omni

post__api_v1_mobile_omni_inquiry

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "key-api": []string{"498254861c9c295db0a4a38355413082945937d8"},
        "userid": []string{"test"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "http://{{localhost}}/api/v1/mobile/omni/inquiry", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}
const inputBody = '{
  "transactionID": "TEST-OMNI-20220322-01",
  "notes": "ini notes",
  "customerID": "319136631"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'key-api':'498254861c9c295db0a4a38355413082945937d8',
  'userid':'test'
};

fetch('http://{{localhost}}/api/v1/mobile/omni/inquiry',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

POST /api/v1/mobile/omni/inquiry

Inquiry

Body parameter

{
  "transactionID": "TEST-OMNI-20220322-01",
  "notes": "ini notes",
  "customerID": "319136631"
}

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none
body body object false none

Example responses

Responses

Status Meaning Description Schema
200 OK Successful response None

Response Schema

v1 > Electricity

post__908_api_v1_electricity_inquiry

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "key-api": []string{"{{key-api}}"},
        "userid": []string{"{{userid}}"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "http://{{localhost}}/908/api/v1/electricity/inquiry", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}
const inputBody = '{
  "transactionID": "TEST-ELECTRICITY5",
  "packageCode": "plnprepaid20",
  "notes": "ini notes",
  "customerID": "32007647137"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'key-api':'{{key-api}}',
  'userid':'{{userid}}'
};

fetch('http://{{localhost}}/908/api/v1/electricity/inquiry',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

POST /908/api/v1/electricity/inquiry

Inquiry

Body parameter

{
  "transactionID": "TEST-ELECTRICITY5",
  "packageCode": "plnprepaid20",
  "notes": "ini notes",
  "customerID": "32007647137"
}

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none
body body object false none

Example responses

200 Response

{
  "code": 200,
  "status": "Success",
  "data": {
    "METER": "32007647137",
    "IDPEL": "535515361193",
    "NAMA": "DRG EMA RAHMAWATI",
    "DAYA": "B1 /5500 VA"
  }
}

Responses

Status Meaning Description Schema
200 OK OK Inline

Response Schema

Response Headers

Status Header Type Format Description
200 X-Powered-By string none
200 Access-Control-Allow-Origin string none
200 Content-Type string none
200 Content-Length integer none
200 ETag string none
200 Date string none
200 Connection string none

post__908_api_v1_electricity_topup

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "key-api": []string{"{{key-api}}"},
        "userid": []string{"{{userid}}"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "http://{{localhost}}/908/api/v1/electricity/topup", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}
const inputBody = '{
  "transactionID": "TRXPLN14",
  "packageCode": "PLN20",
  "notes": "ini notes",
  "customerID": "32007647137"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'key-api':'{{key-api}}',
  'userid':'{{userid}}'
};

fetch('http://{{localhost}}/908/api/v1/electricity/topup',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

POST /908/api/v1/electricity/topup

TopUp

Body parameter

{
  "transactionID": "TRXPLN14",
  "packageCode": "PLN20",
  "notes": "ini notes",
  "customerID": "32007647137"
}

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none
body body object false none

Example responses

OK

{
  "code": 200,
  "status": "Success",
  "data": {
    "id": 10011,
    "ref": "20211213/10011",
    "transactionID": "TRXPLN12",
    "user": {
      "id": "thawaf",
      "clientID": "YT10001"
    },
    "package": {
      "code": "PLN20",
      "price": 20300,
      "denom": "20.000",
      "detail": "Gangguan biller"
    },
    "balance": 509100,
    "customerID": "32007647137",
    "notes": "ini notes",
    "token": "",
    "message": "",
    "statusCode": "014",
    "status": "Gagal",
    "detail": "Gangguan biller",
    "date": "2021-12-13T11:53:36.000Z"
  }
}
{
  "code": 200,
  "status": "Success",
  "data": {
    "id": 10013,
    "ref": "20211213/10013",
    "transactionID": "TRXPLN14",
    "user": {
      "id": "thawaf",
      "clientID": "YT10001"
    },
    "package": {
      "code": "PLN20",
      "price": 20300,
      "denom": "20.000",
      "detail": "Transaksi Sukses"
    },
    "balance": 488800,
    "customerID": "32007647137",
    "notes": "ini notes",
    "token": "6934-6872-6029-1830-2927",
    "message": "Pembelian PLN20 Ke 32007647137 Berhasil, Token = 6934-6872-6029-1830-2927",
    "statusCode": "000",
    "status": "Berhasil",
    "detail": "Transaksi Sukses",
    "date": "2021-12-13T11:56:11.000Z"
  }
}

Responses

Status Meaning Description Schema
200 OK OK Inline

Response Schema

Response Headers

Status Header Type Format Description
200 X-Powered-By string none
200 Access-Control-Allow-Origin string none
200 Content-Type string none
200 Content-Length integer none
200 ETag string none
200 Date string none
200 Connection string none

v1 > Product

get__api_v1_product_list

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
        "key-api": []string{"{{key-api}}"},
        "userid": []string{"{{userid}}"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "http://{{localhost}}/api/v1/product/list", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

const headers = {
  'Accept':'application/json',
  'key-api':'{{key-api}}',
  'userid':'{{userid}}'
};

fetch('http://{{localhost}}/api/v1/product/list',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

GET /api/v1/product/list

list electricity

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none

Example responses

200 Response

{
  "code": 200,
  "status": "Success",
  "data": [
    {
      "operator": "PLN",
      "status": "Active",
      "denom": "100.000",
      "category": "Electricity",
      "price": 100700,
      "code": "pln100k",
      "detail": "Token PLN Denom 100.000",
      "type": "Prepaid"
    },
    {
      "denom": "1.000.000",
      "type": "Prepaid",
      "category": "Electricity",
      "status": "Active",
      "detail": "Token PLN Denom 1.000.000",
      "price": 1001000,
      "operator": "PLN",
      "code": "pln1m"
    },
    {
      "operator": "PLN",
      "type": "Prepaid",
      "detail": "Token PLN Denom 200.000",
      "code": "pln200k",
      "category": "Electricity",
      "status": "Active",
      "denom": "200.000",
      "price": 200800
    },
    {
      "operator": "PLN",
      "status": "Active",
      "category": "Electricity",
      "price": 20500,
      "detail": "Token PLN Denom 20.000",
      "code": "pln20k",
      "type": "Prepaid",
      "denom": "20.000"
    },
    {
      "code": "pln500k",
      "status": "Active",
      "price": 500900,
      "denom": "500.000",
      "category": "Electricity",
      "type": "Prepaid",
      "detail": "Token PLN Denom 500.000",
      "operator": "PLN"
    },
    {
      "category": "Electricity",
      "operator": "PLN",
      "type": "Prepaid",
      "denom": "50.000",
      "code": "pln50k",
      "price": 50500,
      "detail": "Token PLN Denom 50.000",
      "status": "Active"
    }
  ]
}

Responses

Status Meaning Description Schema
200 OK OK Inline

Response Schema

Response Headers

Status Header Type Format Description
200 X-Powered-By string none
200 Access-Control-Allow-Origin string none
200 Content-Type string none
200 Content-Length integer none
200 ETag string none
200 Date string none
200 Connection string none
200 Keep-Alive string none

get__api_v1_product_mobile

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
        "key-api": []string{"{{key-api}}"},
        "userid": []string{"{{userid}}"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "http://{{localhost}}/api/v1/product/mobile", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

const headers = {
  'Accept':'application/json',
  'key-api':'{{key-api}}',
  'userid':'{{userid}}'
};

fetch('http://{{localhost}}/api/v1/product/mobile',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

GET /api/v1/product/mobile

list-mobile

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none

Example responses

200 Response

{
  "code": 200,
  "status": "Success",
  "data": [
    {
      "denom": "100.000",
      "createdAt": "2022-01-20T10:51:48.836Z",
      "availability": "Platform",
      "code": "axis100k",
      "detail": "Axis Denom 100.000",
      "type": "Credit",
      "operator": "Axis",
      "category": "Mobile",
      "status": "Active",
      "updatedAt": "2022-01-31T12:15:27.724Z",
      "price": 99800
    },
    {
      "code": "smartfren60k",
      "category": "Mobile",
      "operator": "Smartfren",
      "availability": "Platform",
      "denom": "60.000",
      "detail": "Smartfren Denom 60.000",
      "createdAt": "2022-01-24T02:17:44.432Z",
      "type": "Credit",
      "price": 59200,
      "status": "Active",
      "updatedAt": "2022-01-31T12:17:23.689Z"
    },
    {
      "operator": "Telkomsel",
      "availability": "Platform",
      "code": "telkomsel100k",
      "status": "Active",
      "detail": "Pulsa Telkomsel 100.000",
      "updatedAt": "2022-01-31T12:21:03.896Z",
      "createdAt": "2022-01-12T02:27:11.725Z",
      "type": "Credit",
      "denom": "100.000",
      "price": 97500,
      "category": "Mobile"
    },
    {
      "updatedAt": "2022-01-31T12:17:34.572Z",
      "detail": "Pulsa Telkomsel 10.000",
      "status": "Active",
      "type": "Credit",
      "operator": "Telkomsel",
      "denom": "10.000",
      "availability": "Platform",
      "category": "Mobile",
      "price": 10700,
      "createdAt": "2022-01-12T02:18:33.635Z",
      "code": "telkomsel10k"
    },
    {
      "code": "telkomsel150k",
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 150.000",
      "category": "Mobile",
      "createdAt": "2022-01-12T02:24:47.125Z",
      "denom": "150.000",
      "updatedAt": "2022-01-31T12:21:39.433Z",
      "status": "Active",
      "operator": "Telkomsel",
      "price": 146500,
      "type": "Credit"
    },
    {
      "denom": "15.000",
      "code": "telkomsel15k",
      "operator": "Telkomsel",
      "availability": "Platform",
      "status": "Active",
      "type": "Credit",
      "updatedAt": "2022-01-31T12:17:38.616Z",
      "category": "Mobile",
      "createdAt": "2022-01-12T02:25:20.276Z",
      "price": 15300,
      "detail": "Pulsa Telkomsel 15.000"
    },
    {
      "createdAt": "2022-01-12T02:26:10.710Z",
      "operator": "Telkomsel",
      "status": "Active",
      "price": 980000,
      "updatedAt": "2022-01-31T12:22:48.784Z",
      "code": "telkomsel1m",
      "category": "Mobile",
      "availability": "Platform",
      "type": "Credit",
      "detail": "Pulsa Telkomsel 1.000.000",
      "denom": "1.000.000"
    },
    {
      "price": 195000,
      "denom": "200.000",
      "detail": "Pulsa Telkomsel 200.000",
      "status": "Active",
      "operator": "Telkomsel",
      "updatedAt": "2022-01-31T12:21:54.522Z",
      "createdAt": "2022-01-12T02:23:39.543Z",
      "availability": "Platform",
      "type": "Credit",
      "code": "telkomsel200k",
      "category": "Mobile"
    },
    {
      "category": "Mobile",
      "price": 20300,
      "denom": "20.000",
      "code": "telkomsel20k",
      "availability": "Platform",
      "createdAt": "2022-01-12T02:24:12.812Z",
      "operator": "Telkomsel",
      "updatedAt": "2022-01-31T12:17:41.410Z",
      "detail": "Pulsa Telkomsel 20.000",
      "status": "Active",
      "type": "Credit"
    },
    {
      "price": 25350,
      "status": "Active",
      "createdAt": "2022-01-12T02:17:45.874Z",
      "updatedAt": "2022-01-31T12:17:55.610Z",
      "type": "Credit",
      "operator": "Telkomsel",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "25.000",
      "detail": "Pulsa Telkomsel 25.000",
      "code": "telkomsel25k"
    },
    {
      "updatedAt": "2022-01-31T12:22:28.537Z",
      "availability": "Platform",
      "denom": "300.000",
      "category": "Mobile",
      "price": 295000,
      "code": "telkomsel300k",
      "detail": "Pulsa Telkomsel 300.000",
      "createdAt": "2022-01-12T02:21:56.165Z",
      "status": "Active",
      "type": "Credit",
      "operator": "Telkomsel"
    },
    {
      "code": "telkomsel30k",
      "status": "Active",
      "operator": "Telkomsel",
      "createdAt": "2022-01-12T02:22:36.958Z",
      "type": "Credit",
      "price": 30000,
      "updatedAt": "2022-01-31T12:18:15.263Z",
      "denom": "30.000",
      "category": "Mobile",
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 30.000"
    },
    {
      "updatedAt": "2022-01-31T12:18:23.190Z",
      "price": 35300,
      "code": "telkomsel35k",
      "detail": "Pulsa Telkomsel 35.000",
      "createdAt": "2022-01-12T02:16:58.136Z",
      "availability": "Platform",
      "status": "Active",
      "operator": "Telkomsel",
      "category": "Mobile",
      "type": "Credit",
      "denom": "35.000"
    },
    {
      "code": "telkomsel40k",
      "denom": "40.000",
      "availability": "Platform",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:18:27.264Z",
      "createdAt": "2022-01-12T02:21:27.697Z",
      "operator": "Telkomsel",
      "price": 39650,
      "detail": "Pulsa Telkomsel 40.000",
      "type": "Credit",
      "status": "Active"
    },
    {
      "category": "Mobile",
      "denom": "45.000",
      "detail": "Pulsa Telkomsel 45.000",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "updatedAt": "2022-01-31T12:18:30.452Z",
      "availability": "Platform",
      "price": 45200,
      "createdAt": "2022-01-12T02:16:21.134Z",
      "code": "telkomsel45k"
    },
    {
      "denom": "500.000",
      "status": "Active",
      "detail": "Pulsa Telkomsel 500.000",
      "createdAt": "2022-01-12T02:20:17.519Z",
      "updatedAt": "2022-01-31T12:22:43.218Z",
      "price": 490000,
      "category": "Mobile",
      "availability": "Platform",
      "operator": "Telkomsel",
      "type": "Credit",
      "code": "telkomsel500k"
    },
    {
      "price": 50100,
      "code": "telkomsel50k",
      "type": "Credit",
      "denom": "50.000",
      "operator": "Telkomsel",
      "updatedAt": "2022-01-31T12:18:33.558Z",
      "availability": "Platform",
      "status": "Active",
      "detail": "Pulsa Telkomsel 50.000",
      "createdAt": "2022-01-12T02:20:46.842Z",
      "category": "Mobile"
    },
    {
      "updatedAt": "2022-01-31T12:20:13.195Z",
      "price": 55200,
      "denom": "55.000",
      "code": "telkomsel55k",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 55.000",
      "createdAt": "2022-01-12T02:14:52.026Z",
      "category": "Mobile"
    },
    {
      "category": "Mobile",
      "status": "Active",
      "updatedAt": "2022-01-31T12:17:30.842Z",
      "type": "Credit",
      "denom": "5.000",
      "price": 5800,
      "createdAt": "2022-01-12T02:15:37.247Z",
      "detail": "Pulsa Telkomsel 5.000",
      "operator": "Telkomsel",
      "code": "telkomsel5k",
      "availability": "Platform"
    },
    {
      "code": "telkomsel60k",
      "category": "Mobile",
      "type": "Credit",
      "detail": "Pulsa Telkomsel 60.000",
      "createdAt": "2022-01-12T02:14:07.487Z",
      "status": "Active",
      "price": 60150,
      "operator": "Telkomsel",
      "updatedAt": "2022-01-31T12:20:16.742Z",
      "availability": "Platform",
      "denom": "60.000"
    },
    {
      "updatedAt": "2022-01-31T12:20:19.807Z",
      "status": "Active",
      "code": "telkomsel65k",
      "detail": "Pulsa Telkomsel 65.000",
      "category": "Mobile",
      "type": "Credit",
      "price": 65100,
      "availability": "Platform",
      "operator": "Telkomsel",
      "createdAt": "2022-01-12T02:13:24.272Z",
      "denom": "65.000"
    },
    {
      "availability": "Platform",
      "createdAt": "2022-01-12T02:12:27.786Z",
      "denom": "70.000",
      "category": "Mobile",
      "operator": "Telkomsel",
      "price": 70050,
      "updatedAt": "2022-01-31T12:20:27.297Z",
      "type": "Credit",
      "status": "Active",
      "code": "telkomsel70k",
      "detail": "Pulsa Telkomsel 70.000"
    },
    {
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform",
      "denom": "75.000",
      "createdAt": "2022-01-12T02:19:48.004Z",
      "updatedAt": "2022-01-31T12:20:30.349Z",
      "price": 73500,
      "category": "Mobile",
      "detail": "Pulsa Telkomsel 75.000",
      "code": "telkomsel75k",
      "status": "Active"
    },
    {
      "status": "Active",
      "createdAt": "2022-01-11T11:25:58.947Z",
      "denom": "80.000",
      "type": "Credit",
      "category": "Mobile",
      "price": 80000,
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:20:36.128Z",
      "detail": "Pulsa Telkomsel 80.000",
      "code": "telkomsel80k",
      "operator": "Telkomsel"
    },
    {
      "detail": "Pulsa Telkomsel 85.000",
      "status": "Active",
      "createdAt": "2022-01-11T11:11:05.337Z",
      "updatedAt": "2022-01-31T12:20:42.354Z",
      "operator": "Telkomsel",
      "denom": "85.000",
      "price": 85000,
      "availability": "Platform",
      "category": "Mobile",
      "type": "Credit",
      "code": "telkomsel85k"
    },
    {
      "code": "telkomsel90k",
      "createdAt": "2022-01-11T11:09:53.738Z",
      "category": "Mobile",
      "status": "Active",
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:20:58.033Z",
      "type": "Credit",
      "denom": "90.000",
      "operator": "Telkomsel",
      "detail": "Pulsa Telkomsel 90.000",
      "price": 90000
    },
    {
      "type": "Credit",
      "updatedAt": "2022-01-31T12:21:01.174Z",
      "detail": "Pulsa Telkomsel 95.000",
      "createdAt": "2022-01-11T11:08:48.357Z",
      "denom": "95.000",
      "status": "Active",
      "availability": "Platform",
      "code": "telkomsel95k",
      "operator": "Telkomsel",
      "price": 95000,
      "category": "Mobile"
    },
    {
      "availability": "Platform",
      "operator": "Telkomsel",
      "detail": "Paket Bicara semua operator 3 Hari",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:17:44.793Z",
      "status": "Active",
      "createdAt": "2022-01-12T02:28:34.928Z",
      "price": 20500,
      "code": "telkomseldataa01",
      "type": "Credit",
      "denom": "20.000"
    },
    {
      "category": "Mobile",
      "detail": "Paket Bicara semua operator 30 Hari",
      "price": 85500,
      "updatedAt": "2022-01-31T12:20:45.334Z",
      "denom": "80.000",
      "status": "Active",
      "code": "telkomseldataa02",
      "createdAt": "2022-01-12T02:29:46.832Z",
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform"
    },
    {
      "availability": "Platform",
      "createdAt": "2022-01-12T02:30:39.914Z",
      "type": "Credit",
      "status": "Active",
      "updatedAt": "2022-01-31T12:21:06.631Z",
      "denom": "100.000",
      "code": "telkomseldatab01",
      "price": 98000,
      "category": "Mobile",
      "operator": "Telkomsel",
      "detail": "Paket Combo 10 GB + 100 menit onnet + 100 SMS 30 Hari"
    },
    {
      "updatedAt": "2022-01-31T12:16:40.476Z",
      "operator": "Telkomsel",
      "code": "telkomseldatac01",
      "availability": "Platform",
      "denom": "20.000",
      "detail": "Zone Based 200 - 420 MB 7 hari",
      "price": 20500,
      "status": "Active",
      "type": "Credit",
      "category": "Mobile",
      "createdAt": "2022-01-12T02:31:22.191Z"
    },
    {
      "type": "Credit",
      "status": "Active",
      "code": "telkomseldatac02",
      "operator": "Telkomsel",
      "availability": "Platform",
      "createdAt": "2022-01-12T02:31:51.252Z",
      "updatedAt": "2022-01-31T12:17:59.204Z",
      "detail": "Zone Based 300 - 750 1 GB OMG 30 hari",
      "denom": "25.000",
      "category": "Mobile",
      "price": 25500
    },
    {
      "category": "Mobile",
      "code": "telkomseldatac03",
      "availability": "Platform",
      "price": 50500,
      "status": "Active",
      "createdAt": "2022-01-12T02:32:22.319Z",
      "detail": "Zone Based 800 MB - 1.5 GB 1 GB Midnight + 3 GB OMG 30 hari",
      "operator": "Telkomsel",
      "updatedAt": "2022-01-31T12:18:53.756Z",
      "type": "Credit",
      "denom": "50.000"
    },
    {
      "createdAt": "2022-01-12T02:33:12.745Z",
      "detail": "Single Zone 4.5 GB 2 GB OMG 30 hari",
      "code": "telkomseldatad01",
      "denom": "68.000",
      "updatedAt": "2022-01-31T12:20:23.615Z",
      "availability": "Platform",
      "operator": "Telkomsel",
      "category": "Mobile",
      "status": "Active",
      "type": "Credit",
      "price": 68500
    },
    {
      "price": 85500,
      "type": "Credit",
      "detail": "Single Zone 8 GB 2 GB OMG 30 hari",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "85.000",
      "createdAt": "2022-01-12T02:33:37.556Z",
      "status": "Active",
      "updatedAt": "2022-01-31T12:20:49.556Z",
      "operator": "Telkomsel",
      "code": "telkomseldatad02"
    },
    {
      "availability": "Platform",
      "detail": "Single Zone 12 GB 2 GB OMG 30 hari",
      "createdAt": "2022-01-12T02:34:13.138Z",
      "type": "Credit",
      "operator": "Telkomsel",
      "price": 105500,
      "denom": "105.000",
      "code": "telkomseldatad03",
      "updatedAt": "2022-01-31T12:21:18.359Z",
      "status": "Active",
      "category": "Mobile"
    },
    {
      "availability": "Platform",
      "denom": "20.000",
      "price": 20500,
      "category": "Mobile",
      "type": "Credit",
      "code": "telkomseldatae01",
      "status": "Active",
      "updatedAt": "2022-01-31T12:17:48.311Z",
      "createdAt": "2022-01-12T02:35:05.823Z",
      "detail": "Maxstream (VideoMax) 5 GB Maxtream 30 hari",
      "operator": "Telkomsel"
    },
    {
      "updatedAt": "2022-01-31T12:18:49.688Z",
      "detail": "Maxstream (VideoMax) 12 GB Maxtream 30 hari",
      "type": "Credit",
      "price": 50300,
      "status": "Active",
      "category": "Mobile",
      "denom": "50.000",
      "code": "telkomseldatae02",
      "availability": "Platform",
      "createdAt": "2022-01-12T02:36:18.258Z",
      "operator": "Telkomsel"
    },
    {
      "code": "telkomseldataf01",
      "type": "Credit",
      "denom": "100.000",
      "operator": "Telkomsel",
      "category": "Mobile",
      "status": "Active",
      "updatedAt": "2022-01-31T12:21:09.745Z",
      "price": 98000,
      "detail": "Maxstream Gala 24 GB Maxstream (HBO GO, Viu Premium, Vidio Gold, Hooq) 30 Hari",
      "availability": "Platform",
      "createdAt": "2022-01-12T02:37:03.963Z"
    },
    {
      "updatedAt": "2022-01-31T12:21:47.596Z",
      "type": "Credit",
      "status": "Active",
      "price": 150500,
      "detail": "Maxstream Gala 40 GB Maxstream (HBO GO, Viu Premium, Vidio Gold, Hooq) 30 hari",
      "createdAt": "2022-01-12T02:37:54.919Z",
      "availability": "Platform",
      "operator": "Telkomsel",
      "code": "telkomseldataf02",
      "category": "Mobile",
      "denom": "150.000"
    },
    {
      "category": "Mobile",
      "denom": "25.000",
      "code": "telkomseldatafu1",
      "status": "Active",
      "createdAt": "2022-01-12T02:38:31.682Z",
      "detail": "Telkomsel Data FUT 1",
      "operator": "Telkomsel",
      "availability": "Platform",
      "price": 26500,
      "updatedAt": "2022-01-31T12:18:11.703Z",
      "type": "Credit"
    },
    {
      "updatedAt": "2022-01-31T12:21:21.115Z",
      "status": "Active",
      "operator": "Telkomsel",
      "availability": "Platform",
      "code": "telkomseldatafu2",
      "createdAt": "2022-01-12T02:39:24.230Z",
      "price": 106500,
      "type": "Credit",
      "denom": "105.000",
      "detail": "Telkomsel Data FUT 2",
      "category": "Mobile"
    },
    {
      "availability": "Platform",
      "denom": "100.000",
      "type": "Credit",
      "status": "Active",
      "code": "telkomseldatafu3",
      "operator": "Telkomsel",
      "price": 101500,
      "detail": "Telkomsel Data FUT 3",
      "updatedAt": "2022-01-31T12:21:15.906Z",
      "category": "Mobile",
      "createdAt": "2022-01-12T02:39:48.743Z"
    },
    {
      "code": "telkomseldatafu4",
      "category": "Mobile",
      "type": "Credit",
      "price": 151500,
      "availability": "Platform",
      "operator": "Telkomsel",
      "createdAt": "2022-01-12T02:40:14.162Z",
      "denom": "150.000",
      "updatedAt": "2022-01-31T12:21:50.546Z",
      "detail": "Telkomsel Data FUT 4",
      "status": "Active"
    },
    {
      "createdAt": "2022-01-12T02:40:53.589Z",
      "type": "Credit",
      "denom": "200.000",
      "detail": "Telkomsel Data FUT 5",
      "price": 201500,
      "code": "telkomseldatafu5",
      "status": "Active",
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:22:00.038Z",
      "operator": "Telkomsel",
      "category": "Mobile"
    },
    {
      "type": "Credit",
      "code": "telkomseldatafu6",
      "operator": "Telkomsel",
      "price": 141500,
      "status": "Active",
      "createdAt": "2022-01-12T02:41:22.017Z",
      "denom": "140.000",
      "availability": "Platform",
      "detail": "Telkomsel Data FUT 6",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:21:26.046Z"
    },
    {
      "price": 337500,
      "denom": "336.000",
      "status": "Active",
      "detail": "Telkomsel Data FUT 8",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:22:38.098Z",
      "availability": "Platform",
      "code": "telkomseldatafu8",
      "type": "Credit",
      "operator": "Telkomsel",
      "createdAt": "2022-01-12T02:41:51.699Z"
    },
    {
      "detail": "Game Max 2 GB Kuota DPI Game 1 GB All network Redeem In game item (30 hari)",
      "status": "Active",
      "code": "telkomseldatag01",
      "category": "Mobile",
      "createdAt": "2022-01-12T02:42:32.455Z",
      "updatedAt": "2022-01-31T12:18:02.660Z",
      "denom": "25.000",
      "type": "Credit",
      "price": 25500,
      "operator": "Telkomsel",
      "availability": "Platform"
    },
    {
      "denom": "30.000",
      "operator": "Telkomsel",
      "category": "Mobile",
      "status": "Active",
      "availability": "Platform",
      "detail": "Broadband Kuota internet 0.7-2GB (sesuai zona), berlaku selama 7 hari",
      "createdAt": "2022-01-12T02:43:04.889Z",
      "updatedAt": "2022-01-31T12:18:19.133Z",
      "code": "telkomseldatah01",
      "type": "Credit",
      "price": 30400
    },
    {
      "availability": "Platform",
      "category": "Mobile",
      "operator": "Telkomsel",
      "denom": "50.000",
      "price": 50200,
      "createdAt": "2022-01-12T02:43:27.424Z",
      "type": "Credit",
      "status": "Active",
      "detail": "Broadband Kuota internet 2.5-5.5GB (sesuai zona)+1GB kuota OMG, berlaku selama 30 hari",
      "code": "telkomseldatah02",
      "updatedAt": "2022-01-31T12:18:40.378Z"
    },
    {
      "operator": "Telkomsel",
      "detail": "Broadband Kuota internet 3.5-8.5GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "denom": "75.000",
      "status": "Active",
      "type": "Credit",
      "code": "telkomseldatah03",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:20:33.620Z",
      "price": 74000,
      "createdAt": "2022-01-12T02:43:54.050Z",
      "availability": "Platform"
    },
    {
      "denom": "100.000",
      "status": "Active",
      "category": "Mobile",
      "operator": "Telkomsel",
      "type": "Credit",
      "detail": "Broadband Kuota internet 9.5-18GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "updatedAt": "2022-01-31T12:21:12.808Z",
      "createdAt": "2022-01-12T02:44:18.220Z",
      "availability": "Platform",
      "code": "telkomseldatah04",
      "price": 98000
    },
    {
      "status": "Active",
      "price": 148000,
      "type": "Credit",
      "updatedAt": "2022-01-31T12:21:42.484Z",
      "availability": "Platform",
      "denom": "150.000",
      "category": "Mobile",
      "operator": "Telkomsel",
      "detail": "Broadband Kuota internet 17.5-32GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "createdAt": "2022-01-12T02:44:41.429Z",
      "code": "telkomseldatah05"
    },
    {
      "price": 198000,
      "availability": "Platform",
      "code": "telkomseldatah06",
      "createdAt": "2022-01-12T02:45:25.655Z",
      "type": "Credit",
      "status": "Active",
      "category": "Mobile",
      "operator": "Telkomsel",
      "detail": "Broadband Kuota internet 17.5-32GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "denom": "200.000",
      "updatedAt": "2022-01-31T12:21:57.018Z"
    },
    {
      "availability": "Platform",
      "operator": "Telkomsel",
      "denom": "20.000",
      "price": 20500,
      "updatedAt": "2022-01-31T12:17:52.420Z",
      "code": "telkomseldataj01",
      "category": "Mobile",
      "type": "Credit",
      "createdAt": "2022-01-12T02:46:08.170Z",
      "detail": "Paket Data Disney+hotstar 1 bulan (kuota maxstream 3Gb)",
      "status": "Active"
    },
    {
      "createdAt": "2022-01-12T02:46:32.271Z",
      "code": "telkomseldataj02",
      "type": "Credit",
      "price": 50100,
      "status": "Active",
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:18:37.262Z",
      "denom": "50.000",
      "detail": "Paket Data Disney+hotstar 3 bulan (kuota maxstream 3GB/bulan)",
      "category": "Mobile",
      "operator": "Telkomsel"
    },
    {
      "code": "telkomseldataj04",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "category": "Mobile",
      "createdAt": "2022-01-12T02:47:37.757Z",
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:21:23.312Z",
      "detail": "Paket Data Disney+hotstar 12 bulan (kuota maxstream, 3GB/bulan)",
      "price": 140000,
      "denom": "140.000"
    },
    {
      "status": "Active",
      "updatedAt": "2022-01-31T12:20:39.093Z",
      "price": 80000,
      "detail": "Paket Data Disney+hotstar 6 bulan (kuota maxstream, 3GB/bulan)",
      "category": "Mobile",
      "availability": "Platform",
      "type": "Credit",
      "createdAt": "2022-01-12T02:47:01.951Z",
      "code": "telkomseldataj03",
      "denom": "80.000",
      "operator": "Telkomsel"
    },
    {
      "operator": "Telkomsel",
      "price": 25500,
      "updatedAt": "2022-01-31T12:18:07.862Z",
      "category": "Mobile",
      "denom": "25.000",
      "detail": "Paket Musicmax Bonus Akses LangitMusik Premium+2 NSP 1 bulan. 5GB Music, 1.25 Internet, 0.25 Youtube",
      "type": "Credit",
      "availability": "Platform",
      "code": "telkomseldatak01",
      "status": "Active",
      "createdAt": "2022-01-12T02:48:31.639Z"
    },
    {
      "detail": "Internet Promo Umroh 12 days 5GB",
      "category": "Mobile",
      "type": "Package Data",
      "code": "telkomseldataumroh01",
      "createdAt": "2022-01-21T02:45:25.435Z",
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:22:03.660Z",
      "denom": "264.000",
      "status": "Active",
      "operator": "Telkomsel",
      "price": 265000
    },
    {
      "code": "telkomseldatal02",
      "updatedAt": "2022-01-31T12:22:35.577Z",
      "type": "Credit",
      "status": "Active",
      "createdAt": "2022-01-12T02:49:02.037Z",
      "denom": "336.000",
      "category": "Mobile",
      "availability": "Platform",
      "price": 336000,
      "detail": "Roamax Internet Asia Australia 5GB",
      "operator": "Telkomsel"
    },
    {
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:22:40.521Z",
      "availability": "Platform",
      "price": 361000,
      "detail": "Internet Promo Umroh 17 days 10GB",
      "status": "Active",
      "type": "Package Data",
      "denom": "360.000",
      "code": "telkomseldataumroh02",
      "createdAt": "2022-01-21T02:45:51.724Z",
      "operator": "Telkomsel"
    },
    {
      "category": "Mobile",
      "status": "Active",
      "availability": "Platform",
      "detail": "Tri Denom 100.000",
      "price": 98500,
      "denom": "100.000",
      "operator": "Tri",
      "type": "Credit",
      "code": "tri100k",
      "updatedAt": "2022-01-31T12:23:15.207Z",
      "createdAt": "2022-01-20T11:09:47.398Z"
    },
    {
      "price": 328000,
      "availability": "Platform",
      "category": "Mobile",
      "detail": "Combo Promo Umroh 12 days 5GB, 30min, 30sms",
      "code": "telkomseldataumroh03",
      "createdAt": "2022-01-21T02:46:23.283Z",
      "operator": "Telkomsel",
      "type": "Package Data",
      "denom": "327.000",
      "status": "Active",
      "updatedAt": "2022-01-31T12:22:32.312Z"
    },
    {
      "code": "telkomseldataumroh04",
      "updatedAt": "2022-01-31T12:22:45.535Z",
      "detail": "Combo Promo Umroh 17 days 10GB, 45min, 45sms",
      "category": "Mobile",
      "availability": "Platform",
      "status": "Active",
      "denom": "528.000",
      "type": "Package Data",
      "price": 529000,
      "operator": "Telkomsel",
      "createdAt": "2022-01-21T02:46:53.418Z"
    },
    {
      "type": "Credit",
      "createdAt": "2022-01-20T11:10:23.896Z",
      "status": "Active",
      "availability": "Platform",
      "price": 10900,
      "code": "tri10k",
      "denom": "10.000",
      "updatedAt": "2022-01-31T12:22:54.495Z",
      "category": "Mobile",
      "detail": "Tri Denom 10.000",
      "operator": "Tri"
    },
    {
      "denom": "20.000",
      "type": "Credit",
      "code": "tri20k",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:22:57.772Z",
      "createdAt": "2022-01-20T11:09:17.888Z",
      "status": "Active",
      "detail": "Tri Denom 20.000",
      "price": 20200,
      "availability": "Platform",
      "operator": "Tri"
    },
    {
      "price": 25100,
      "type": "Credit",
      "code": "tri25k",
      "availability": "Platform",
      "createdAt": "2022-01-20T11:08:32.366Z",
      "detail": "Tri Denom 25.000",
      "category": "Mobile",
      "operator": "Tri",
      "status": "Active",
      "updatedAt": "2022-01-31T12:23:00.859Z",
      "denom": "25.000"
    },
    {
      "createdAt": "2022-01-20T11:08:05.765Z",
      "code": "tri30k",
      "type": "Credit",
      "detail": "Tri Denom 30.000",
      "denom": "30.000",
      "status": "Active",
      "updatedAt": "2022-01-31T12:23:03.527Z",
      "category": "Mobile",
      "availability": "Platform",
      "price": 29800,
      "operator": "Tri"
    },
    {
      "createdAt": "2022-01-20T11:07:28.993Z",
      "updatedAt": "2022-01-31T12:23:06.465Z",
      "detail": "Tri Denom 40.000",
      "operator": "Tri",
      "category": "Mobile",
      "price": 39600,
      "status": "Active",
      "type": "Credit",
      "denom": "40.000",
      "code": "tri40k",
      "availability": "Platform"
    },
    {
      "price": 6000,
      "code": "tri5k",
      "updatedAt": "2022-01-31T12:19:46.192Z",
      "availability": "Platform",
      "detail": "Tri Denom 5.000",
      "type": "Credit",
      "status": "Active",
      "operator": "Tri",
      "denom": "5.000",
      "createdAt": "2022-01-20T11:07:00.602Z",
      "category": "Mobile"
    },
    {
      "updatedAt": "2022-01-31T12:23:09.148Z",
      "price": 49500,
      "status": "Active",
      "operator": "Tri",
      "category": "Mobile",
      "code": "tri50k",
      "availability": "Platform",
      "detail": "Tri Denom 50.000",
      "denom": "50.000",
      "createdAt": "2022-01-20T11:06:37.631Z",
      "type": "Credit"
    },
    {
      "detail": "Tri Denom 75.000",
      "type": "Credit",
      "code": "tri75k",
      "status": "Active",
      "updatedAt": "2022-01-31T12:23:12.119Z",
      "createdAt": "2022-01-20T11:05:57.705Z",
      "operator": "Tri",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "75.000",
      "price": 73500
    },
    {
      "category": "Mobile",
      "price": 8800,
      "availability": "Platform",
      "detail": "Tri Denom 8.000",
      "createdAt": "2022-01-20T11:05:12.924Z",
      "updatedAt": "2022-01-31T12:22:51.286Z",
      "denom": "8.000",
      "operator": "Tri",
      "type": "Credit",
      "status": "Active",
      "code": "tri8k"
    },
    {
      "type": "Credit",
      "createdAt": "2022-01-20T10:55:22.378Z",
      "category": "Mobile",
      "denom": "10.000",
      "detail": "XL Denom 10.000",
      "updatedAt": "2022-01-31T12:23:21.092Z",
      "price": 11500,
      "status": "Active",
      "code": "xl10k",
      "availability": "Platform",
      "operator": "XL"
    },
    {
      "createdAt": "2022-01-20T10:48:52.507Z",
      "updatedAt": "2022-01-31T12:23:24.150Z",
      "operator": "XL",
      "denom": "15.000",
      "availability": "Platform",
      "price": 15600,
      "status": "Active",
      "detail": "XL Denom 15.000",
      "type": "Credit",
      "code": "xl15k",
      "category": "Mobile"
    },
    {
      "detail": "XL Denom 100.000",
      "price": 99800,
      "createdAt": "2022-01-20T10:52:11.021Z",
      "updatedAt": "2022-01-31T12:23:35.803Z",
      "availability": "Platform",
      "category": "Mobile",
      "code": "xl100k",
      "operator": "XL",
      "status": "Active",
      "type": "Credit",
      "denom": "100.000"
    },
    {
      "availability": "Platform",
      "operator": "XL",
      "updatedAt": "2022-01-31T12:23:48.454Z",
      "createdAt": "2022-01-20T10:50:21.328Z",
      "category": "Mobile",
      "detail": "XL Denom 1.000.000",
      "code": "xl1m",
      "type": "Credit",
      "status": "Active",
      "price": 990000,
      "denom": "1.000.000"
    },
    {
      "updatedAt": "2022-01-31T12:23:38.528Z",
      "price": 199500,
      "category": "Mobile",
      "denom": "200.000",
      "operator": "XL",
      "status": "Active",
      "type": "Credit",
      "createdAt": "2022-01-20T10:46:59.617Z",
      "availability": "Platform",
      "detail": "XL Denom 200.000",
      "code": "xl200k"
    },
    {
      "category": "Mobile",
      "type": "Credit",
      "denom": "25.000",
      "detail": "XL Denom 25.000",
      "updatedAt": "2022-01-31T12:23:26.608Z",
      "status": "Active",
      "operator": "XL",
      "availability": "Platform",
      "price": 25400,
      "createdAt": "2022-01-20T10:44:01.545Z",
      "code": "xl25k"
    },
    {
      "availability": "Platform",
      "price": 299000,
      "detail": "XL Denom 300.000",
      "operator": "XL",
      "status": "Active",
      "updatedAt": "2022-01-31T12:23:41.461Z",
      "createdAt": "2022-01-20T08:07:55.168Z",
      "type": "Credit",
      "code": "xl300k",
      "denom": "300.000",
      "category": "Mobile"
    },
    {
      "denom": "30.000",
      "updatedAt": "2022-01-31T12:23:30.125Z",
      "operator": "XL",
      "type": "Credit",
      "category": "Mobile",
      "createdAt": "2022-01-20T10:42:08.159Z",
      "detail": "XL Denom 30.000",
      "price": 30300,
      "availability": "Platform",
      "status": "Active",
      "code": "xl30k"
    },
    {
      "type": "Credit",
      "category": "Mobile",
      "availability": "Platform",
      "detail": "XL/Axis Denom 500.000",
      "operator": "XL",
      "updatedAt": "2022-01-31T12:23:44.152Z",
      "createdAt": "2022-01-19T02:47:15.036Z",
      "code": "xl500k",
      "price": 498000,
      "status": "Active",
      "denom": "500.000"
    },
    {
      "createdAt": "2022-01-20T07:32:02.885Z",
      "operator": "XL",
      "detail": "XL Denom 50.000",
      "updatedAt": "2022-01-31T12:23:33.125Z",
      "type": "Credit",
      "code": "xl50k",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "50.000",
      "price": 50300,
      "status": "Active"
    },
    {
      "operator": "XL",
      "detail": "XL Denom 5.000",
      "denom": "5.000",
      "code": "xl5k",
      "price": 6500,
      "availability": "Platform",
      "createdAt": "2022-01-20T08:01:07.024Z",
      "updatedAt": "2022-01-31T12:23:18.512Z",
      "status": "Active",
      "type": "Credit",
      "category": "Mobile"
    },
    {
      "code": "axis10k",
      "denom": "10.000",
      "category": "Mobile",
      "price": 11500,
      "detail": "Axis Denom 10.000",
      "status": "Active",
      "createdAt": "2022-01-20T10:55:06.943Z",
      "operator": "Axis",
      "updatedAt": "2022-01-31T02:31:38.853Z",
      "availability": "Platform",
      "type": "Credit"
    },
    {
      "code": "axis15k",
      "updatedAt": "2022-01-31T02:31:48.414Z",
      "operator": "Axis",
      "denom": "15.000",
      "detail": "Axis Denom 15.000",
      "status": "Active",
      "type": "Credit",
      "price": 15600,
      "availability": "Platform",
      "category": "Mobile",
      "createdAt": "2022-01-20T10:48:38.059Z"
    },
    {
      "code": "axis1m",
      "price": 990000,
      "updatedAt": "2022-01-31T12:15:44.260Z",
      "createdAt": "2022-01-20T10:50:08.088Z",
      "availability": "Platform",
      "status": "Active",
      "type": "Credit",
      "detail": "Axis Denom 1.000.000",
      "operator": "Axis",
      "denom": "1.000.000",
      "category": "Mobile"
    },
    {
      "status": "Active",
      "type": "Credit",
      "code": "axis200k",
      "createdAt": "2022-01-20T11:00:14.587Z",
      "denom": "200.000",
      "detail": "Axis Denom 200.000",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:15:31.932Z",
      "operator": "Axis",
      "price": 199500,
      "availability": "Platform"
    },
    {
      "availability": "Platform",
      "status": "Active",
      "detail": "Smartfren Denom 5.000",
      "category": "Mobile",
      "denom": "5.000",
      "type": "Credit",
      "createdAt": "2022-01-24T02:16:38.397Z",
      "updatedAt": "2022-01-31T12:17:07.832Z",
      "operator": "Smartfren",
      "code": "smartfren5k",
      "price": 5900
    },
    {
      "price": 299000,
      "detail": "Axis Denom 300.000",
      "updatedAt": "2022-01-31T12:15:36.828Z",
      "code": "axis300k",
      "status": "Active",
      "category": "Mobile",
      "denom": "300.000",
      "type": "Credit",
      "operator": "Axis",
      "createdAt": "2022-01-20T08:08:09.677Z",
      "availability": "Platform"
    },
    {
      "operator": "Axis",
      "denom": "30.000",
      "code": "axis30k",
      "status": "Active",
      "availability": "Platform",
      "category": "Mobile",
      "createdAt": "2022-01-20T10:41:33.220Z",
      "price": 30300,
      "updatedAt": "2022-01-31T12:15:19.061Z",
      "type": "Credit",
      "detail": "Axis Denom 30.000"
    },
    {
      "operator": "Axis",
      "status": "Active",
      "code": "axis500k",
      "price": 498000,
      "updatedAt": "2022-01-31T12:15:40.750Z",
      "createdAt": "2022-01-20T02:43:05.295Z",
      "type": "Credit",
      "denom": "500.000",
      "availability": "Platform",
      "category": "Mobile",
      "detail": "Axis Denom 500.000"
    },
    {
      "operator": "Axis",
      "availability": "Platform",
      "category": "Mobile",
      "createdAt": "2022-01-20T07:33:44.479Z",
      "updatedAt": "2022-01-31T12:15:24.025Z",
      "status": "Active",
      "code": "axis50k",
      "detail": "Axis Denom 50.000",
      "price": 50300,
      "type": "Credit",
      "denom": "50.000"
    },
    {
      "status": "Active",
      "type": "Credit",
      "category": "Mobile",
      "createdAt": "2022-01-20T08:06:36.500Z",
      "denom": "5.000",
      "updatedAt": "2022-01-30T16:22:40.176Z",
      "operator": "Axis",
      "availability": "Platform",
      "code": "axis5k",
      "price": 6500,
      "detail": "Axis Denom 5.000"
    },
    {
      "operator": "Indosat",
      "code": "indosat100k",
      "category": "Mobile",
      "denom": "100.000",
      "detail": "Indosat Denom 100.000",
      "price": 98500,
      "type": "Credit",
      "availability": "Platform",
      "createdAt": "2022-01-20T11:22:07.009Z",
      "updatedAt": "2022-01-31T12:16:15.402Z",
      "status": "Active"
    },
    {
      "createdAt": "2022-01-20T11:22:23.134Z",
      "status": "Active",
      "price": 11500,
      "code": "indosat10k",
      "availability": "Platform",
      "denom": "10.000",
      "operator": "Indosat",
      "type": "Credit",
      "detail": "Indosat Denom 10.000",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:15:47.900Z"
    },
    {
      "operator": "Indosat",
      "updatedAt": "2022-01-31T12:15:54.894Z",
      "availability": "Platform",
      "type": "Credit",
      "detail": "Indosat Denom 15.000",
      "denom": "15.000",
      "createdAt": "2022-01-20T11:21:32.030Z",
      "category": "Mobile",
      "status": "Active",
      "price": 16500,
      "code": "indosat15k"
    },
    {
      "operator": "Indosat",
      "code": "indosat1m",
      "detail": "Indosat Denom 1.000.000",
      "updatedAt": "2022-01-31T12:16:28.280Z",
      "type": "Credit",
      "denom": "1.000.000",
      "availability": "Platform",
      "category": "Mobile",
      "status": "Active",
      "createdAt": "2022-01-20T11:21:49.627Z",
      "price": 1001000
    },
    {
      "denom": "20.000",
      "type": "Credit",
      "operator": "Indosat",
      "status": "Active",
      "price": 20600,
      "updatedAt": "2022-01-31T12:15:59.190Z",
      "availability": "Platform",
      "category": "Mobile",
      "createdAt": "2022-01-20T11:21:13.812Z",
      "code": "indosat20k",
      "detail": "Indosat Denom 20.000"
    },
    {
      "createdAt": "2022-01-20T11:20:30.174Z",
      "type": "Credit",
      "code": "indosat250k",
      "category": "Mobile",
      "operator": "Indosat",
      "updatedAt": "2022-01-31T12:16:20.735Z",
      "detail": "Indosat Denom 250.000",
      "price": 251000,
      "status": "Active",
      "denom": "250.000",
      "availability": "Platform"
    },
    {
      "updatedAt": "2022-01-31T12:16:02.833Z",
      "denom": "25.000",
      "category": "Mobile",
      "createdAt": "2022-01-20T11:20:46.276Z",
      "price": 25600,
      "availability": "Platform",
      "status": "Active",
      "operator": "Indosat",
      "code": "indosat25k",
      "detail": "Indosat Denom 25.000",
      "type": "Credit"
    },
    {
      "code": "indosat500k",
      "type": "Credit",
      "denom": "500.000",
      "price": 501000,
      "detail": "Indosat Denom 500.000",
      "updatedAt": "2022-01-31T12:16:24.547Z",
      "createdAt": "2022-01-20T11:19:27.381Z",
      "category": "Mobile",
      "operator": "Indosat",
      "status": "Active",
      "availability": "Platform"
    },
    {
      "category": "Mobile",
      "denom": "50.000",
      "code": "indosat50k",
      "detail": "Indosat Denom 50.000",
      "operator": "Indosat",
      "availability": "Platform",
      "type": "Credit",
      "createdAt": "2022-01-20T11:20:09.382Z",
      "updatedAt": "2022-01-31T12:16:10.774Z",
      "status": "Active",
      "price": 49500
    },
    {
      "code": "smartfren100k",
      "denom": "100.000",
      "price": 98500,
      "createdAt": "2022-01-24T02:15:59.077Z",
      "detail": "Smartfren Denom 100.000",
      "availability": "Platform",
      "status": "Active",
      "operator": "Smartfren",
      "category": "Mobile",
      "type": "Credit",
      "updatedAt": "2022-01-31T12:17:26.914Z"
    },
    {
      "createdAt": "2022-01-24T02:15:35.809Z",
      "code": "smartfren10k",
      "type": "Credit",
      "price": 10600,
      "operator": "Smartfren",
      "denom": "10.000",
      "status": "Active",
      "availability": "Platform",
      "category": "Mobile",
      "updatedAt": "2022-01-31T12:17:11.026Z",
      "detail": "Smartfren Denom 10.000"
    },
    {
      "status": "Active",
      "type": "Credit",
      "price": 20300,
      "availability": "Platform",
      "code": "smartfren20k",
      "createdAt": "2022-01-24T02:16:21.969Z",
      "denom": "20.000",
      "category": "Mobile",
      "operator": "Smartfren",
      "detail": "Smartfren Denom 20.000",
      "updatedAt": "2022-01-31T12:17:15.229Z"
    },
    {
      "price": 50000,
      "type": "Credit",
      "detail": "Smartfren Denom 50.000",
      "updatedAt": "2022-01-31T12:17:18.112Z",
      "availability": "Platform",
      "createdAt": "2022-01-24T02:17:01.222Z",
      "operator": "Smartfren",
      "category": "Mobile",
      "status": "Active",
      "code": "smartfren50k",
      "denom": "50.000"
    },
    {
      "detail": "Axis Denom 25.000",
      "availability": "Platform",
      "updatedAt": "2022-01-31T12:15:14.628Z",
      "denom": "25.000",
      "createdAt": "2022-01-20T10:43:35.465Z",
      "price": 25400,
      "status": "Active",
      "type": "Credit",
      "operator": "Axis",
      "code": "axis25k",
      "category": "Mobile"
    }
  ]
}

Responses

Status Meaning Description Schema
200 OK OK Inline

Response Schema

Response Headers

Status Header Type Format Description
200 X-Powered-By string none
200 Access-Control-Allow-Origin string none
200 Content-Type string none
200 Content-Length integer none
200 ETag string none
200 Date string none
200 Connection string none
200 Keep-Alive string none

get__api_v1_product_electricity

Code samples

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
        "key-api": []string{"{{key-api}}"},
        "userid": []string{"{{userid}}"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "http://{{localhost}}/api/v1/product/electricity", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

const headers = {
  'Accept':'application/json',
  'key-api':'{{key-api}}',
  'userid':'{{userid}}'
};

fetch('http://{{localhost}}/api/v1/product/electricity',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

GET /api/v1/product/electricity

Product List (electricity)

Parameters

Name In Type Required Description
key-api header string false none
userid header string false none

Example responses

200 Response

{
  "code": 200,
  "status": "Success",
  "count": 109,
  "data": [
    {
      "denom": "100.000",
      "availability": "Platform",
      "code": "axis100k",
      "detail": "Axis Denom 100.000",
      "type": "Credit",
      "operator": "Axis",
      "category": "Mobile",
      "status": "Active",
      "price": 99800
    },
    {
      "code": "smartfren60k",
      "category": "Mobile",
      "operator": "Smartfren",
      "availability": "Platform",
      "denom": "60.000",
      "detail": "Smartfren Denom 60.000",
      "type": "Credit",
      "price": 59200,
      "status": "Active"
    },
    {
      "operator": "Telkomsel",
      "availability": "Platform",
      "code": "telkomsel100k",
      "status": "Active",
      "detail": "Pulsa Telkomsel 100.000",
      "type": "Credit",
      "denom": "100.000",
      "price": 97500,
      "category": "Mobile"
    },
    {
      "detail": "Pulsa Telkomsel 10.000",
      "status": "Active",
      "type": "Credit",
      "operator": "Telkomsel",
      "denom": "10.000",
      "availability": "Platform",
      "category": "Mobile",
      "price": 10700,
      "code": "telkomsel10k"
    },
    {
      "code": "telkomsel150k",
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 150.000",
      "category": "Mobile",
      "denom": "150.000",
      "status": "Active",
      "operator": "Telkomsel",
      "price": 146500,
      "type": "Credit"
    },
    {
      "denom": "15.000",
      "code": "telkomsel15k",
      "operator": "Telkomsel",
      "availability": "Platform",
      "status": "Active",
      "type": "Credit",
      "category": "Mobile",
      "price": 15300,
      "detail": "Pulsa Telkomsel 15.000"
    },
    {
      "operator": "Telkomsel",
      "status": "Active",
      "price": 980000,
      "code": "telkomsel1m",
      "category": "Mobile",
      "availability": "Platform",
      "type": "Credit",
      "detail": "Pulsa Telkomsel 1.000.000",
      "denom": "1.000.000"
    },
    {
      "price": 195000,
      "denom": "200.000",
      "detail": "Pulsa Telkomsel 200.000",
      "status": "Active",
      "operator": "Telkomsel",
      "availability": "Platform",
      "type": "Credit",
      "code": "telkomsel200k",
      "category": "Mobile"
    },
    {
      "category": "Mobile",
      "price": 20300,
      "denom": "20.000",
      "code": "telkomsel20k",
      "availability": "Platform",
      "operator": "Telkomsel",
      "detail": "Pulsa Telkomsel 20.000",
      "status": "Active",
      "type": "Credit"
    },
    {
      "price": 25350,
      "status": "Active",
      "type": "Credit",
      "operator": "Telkomsel",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "25.000",
      "detail": "Pulsa Telkomsel 25.000",
      "code": "telkomsel25k"
    },
    {
      "availability": "Platform",
      "denom": "300.000",
      "category": "Mobile",
      "price": 295000,
      "code": "telkomsel300k",
      "detail": "Pulsa Telkomsel 300.000",
      "status": "Active",
      "type": "Credit",
      "operator": "Telkomsel"
    },
    {
      "code": "telkomsel30k",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "price": 30000,
      "denom": "30.000",
      "category": "Mobile",
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 30.000"
    },
    {
      "price": 35300,
      "code": "telkomsel35k",
      "detail": "Pulsa Telkomsel 35.000",
      "availability": "Platform",
      "status": "Active",
      "operator": "Telkomsel",
      "category": "Mobile",
      "type": "Credit",
      "denom": "35.000"
    },
    {
      "code": "telkomsel40k",
      "denom": "40.000",
      "availability": "Platform",
      "category": "Mobile",
      "operator": "Telkomsel",
      "price": 39650,
      "detail": "Pulsa Telkomsel 40.000",
      "type": "Credit",
      "status": "Active"
    },
    {
      "category": "Mobile",
      "denom": "45.000",
      "detail": "Pulsa Telkomsel 45.000",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform",
      "price": 45200,
      "code": "telkomsel45k"
    },
    {
      "denom": "500.000",
      "status": "Active",
      "detail": "Pulsa Telkomsel 500.000",
      "price": 490000,
      "category": "Mobile",
      "availability": "Platform",
      "operator": "Telkomsel",
      "type": "Credit",
      "code": "telkomsel500k"
    },
    {
      "price": 50100,
      "code": "telkomsel50k",
      "type": "Credit",
      "denom": "50.000",
      "operator": "Telkomsel",
      "availability": "Platform",
      "status": "Active",
      "detail": "Pulsa Telkomsel 50.000",
      "category": "Mobile"
    },
    {
      "price": 55200,
      "denom": "55.000",
      "code": "telkomsel55k",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 55.000",
      "category": "Mobile"
    },
    {
      "category": "Mobile",
      "status": "Active",
      "type": "Credit",
      "denom": "5.000",
      "price": 5800,
      "detail": "Pulsa Telkomsel 5.000",
      "operator": "Telkomsel",
      "code": "telkomsel5k",
      "availability": "Platform"
    },
    {
      "code": "telkomsel60k",
      "category": "Mobile",
      "type": "Credit",
      "detail": "Pulsa Telkomsel 60.000",
      "status": "Active",
      "price": 60150,
      "operator": "Telkomsel",
      "availability": "Platform",
      "denom": "60.000"
    },
    {
      "status": "Active",
      "code": "telkomsel65k",
      "detail": "Pulsa Telkomsel 65.000",
      "category": "Mobile",
      "type": "Credit",
      "price": 65100,
      "availability": "Platform",
      "operator": "Telkomsel",
      "denom": "65.000"
    },
    {
      "availability": "Platform",
      "denom": "70.000",
      "category": "Mobile",
      "operator": "Telkomsel",
      "price": 70050,
      "type": "Credit",
      "status": "Active",
      "code": "telkomsel70k",
      "detail": "Pulsa Telkomsel 70.000"
    },
    {
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform",
      "denom": "75.000",
      "price": 73500,
      "category": "Mobile",
      "detail": "Pulsa Telkomsel 75.000",
      "code": "telkomsel75k",
      "status": "Active"
    },
    {
      "status": "Active",
      "denom": "80.000",
      "type": "Credit",
      "category": "Mobile",
      "price": 80000,
      "availability": "Platform",
      "detail": "Pulsa Telkomsel 80.000",
      "code": "telkomsel80k",
      "operator": "Telkomsel"
    },
    {
      "detail": "Pulsa Telkomsel 85.000",
      "status": "Active",
      "operator": "Telkomsel",
      "denom": "85.000",
      "price": 85000,
      "availability": "Platform",
      "category": "Mobile",
      "type": "Credit",
      "code": "telkomsel85k"
    },
    {
      "code": "telkomsel90k",
      "category": "Mobile",
      "status": "Active",
      "availability": "Platform",
      "type": "Credit",
      "denom": "90.000",
      "operator": "Telkomsel",
      "detail": "Pulsa Telkomsel 90.000",
      "price": 90000
    },
    {
      "type": "Credit",
      "detail": "Pulsa Telkomsel 95.000",
      "denom": "95.000",
      "status": "Active",
      "availability": "Platform",
      "code": "telkomsel95k",
      "operator": "Telkomsel",
      "price": 95000,
      "category": "Mobile"
    },
    {
      "availability": "Platform",
      "operator": "Telkomsel",
      "detail": "Paket Bicara semua operator 3 Hari",
      "category": "Mobile",
      "status": "Active",
      "price": 20500,
      "code": "telkomseldataa01",
      "type": "Credit",
      "denom": "20.000"
    },
    {
      "category": "Mobile",
      "detail": "Paket Bicara semua operator 30 Hari",
      "price": 85500,
      "denom": "80.000",
      "status": "Active",
      "code": "telkomseldataa02",
      "operator": "Telkomsel",
      "type": "Credit",
      "availability": "Platform"
    },
    {
      "availability": "Platform",
      "type": "Credit",
      "status": "Active",
      "denom": "100.000",
      "code": "telkomseldatab01",
      "price": 98000,
      "category": "Mobile",
      "operator": "Telkomsel",
      "detail": "Paket Combo 10 GB + 100 menit onnet + 100 SMS 30 Hari"
    },
    {
      "operator": "Telkomsel",
      "code": "telkomseldatac01",
      "availability": "Platform",
      "denom": "20.000",
      "detail": "Zone Based 200 - 420 MB 7 hari",
      "price": 20500,
      "status": "Active",
      "type": "Credit",
      "category": "Mobile"
    },
    {
      "type": "Credit",
      "status": "Active",
      "code": "telkomseldatac02",
      "operator": "Telkomsel",
      "availability": "Platform",
      "detail": "Zone Based 300 - 750 1 GB OMG 30 hari",
      "denom": "25.000",
      "category": "Mobile",
      "price": 25500
    },
    {
      "category": "Mobile",
      "code": "telkomseldatac03",
      "availability": "Platform",
      "price": 50500,
      "status": "Active",
      "detail": "Zone Based 800 MB - 1.5 GB 1 GB Midnight + 3 GB OMG 30 hari",
      "operator": "Telkomsel",
      "type": "Credit",
      "denom": "50.000"
    },
    {
      "detail": "Single Zone 4.5 GB 2 GB OMG 30 hari",
      "code": "telkomseldatad01",
      "denom": "68.000",
      "availability": "Platform",
      "operator": "Telkomsel",
      "category": "Mobile",
      "status": "Active",
      "type": "Credit",
      "price": 68500
    },
    {
      "price": 85500,
      "type": "Credit",
      "detail": "Single Zone 8 GB 2 GB OMG 30 hari",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "85.000",
      "status": "Active",
      "operator": "Telkomsel",
      "code": "telkomseldatad02"
    },
    {
      "availability": "Platform",
      "detail": "Single Zone 12 GB 2 GB OMG 30 hari",
      "type": "Credit",
      "operator": "Telkomsel",
      "price": 105500,
      "denom": "105.000",
      "code": "telkomseldatad03",
      "status": "Active",
      "category": "Mobile"
    },
    {
      "availability": "Platform",
      "denom": "20.000",
      "price": 20500,
      "category": "Mobile",
      "type": "Credit",
      "code": "telkomseldatae01",
      "status": "Active",
      "detail": "Maxstream (VideoMax) 5 GB Maxtream 30 hari",
      "operator": "Telkomsel"
    },
    {
      "detail": "Maxstream (VideoMax) 12 GB Maxtream 30 hari",
      "type": "Credit",
      "price": 50300,
      "status": "Active",
      "category": "Mobile",
      "denom": "50.000",
      "code": "telkomseldatae02",
      "availability": "Platform",
      "operator": "Telkomsel"
    },
    {
      "code": "telkomseldataf01",
      "type": "Credit",
      "denom": "100.000",
      "operator": "Telkomsel",
      "category": "Mobile",
      "status": "Active",
      "price": 98000,
      "detail": "Maxstream Gala 24 GB Maxstream (HBO GO, Viu Premium, Vidio Gold, Hooq) 30 Hari",
      "availability": "Platform"
    },
    {
      "type": "Credit",
      "status": "Active",
      "price": 150500,
      "detail": "Maxstream Gala 40 GB Maxstream (HBO GO, Viu Premium, Vidio Gold, Hooq) 30 hari",
      "availability": "Platform",
      "operator": "Telkomsel",
      "code": "telkomseldataf02",
      "category": "Mobile",
      "denom": "150.000"
    },
    {
      "category": "Mobile",
      "denom": "25.000",
      "code": "telkomseldatafu1",
      "status": "Active",
      "detail": "Telkomsel Data FUT 1",
      "operator": "Telkomsel",
      "availability": "Platform",
      "price": 26500,
      "type": "Credit"
    },
    {
      "status": "Active",
      "operator": "Telkomsel",
      "availability": "Platform",
      "code": "telkomseldatafu2",
      "price": 106500,
      "type": "Credit",
      "denom": "105.000",
      "detail": "Telkomsel Data FUT 2",
      "category": "Mobile"
    },
    {
      "availability": "Platform",
      "denom": "100.000",
      "type": "Credit",
      "status": "Active",
      "code": "telkomseldatafu3",
      "operator": "Telkomsel",
      "price": 101500,
      "detail": "Telkomsel Data FUT 3",
      "category": "Mobile"
    },
    {
      "code": "telkomseldatafu4",
      "category": "Mobile",
      "type": "Credit",
      "price": 151500,
      "availability": "Platform",
      "operator": "Telkomsel",
      "denom": "150.000",
      "detail": "Telkomsel Data FUT 4",
      "status": "Active"
    },
    {
      "type": "Credit",
      "denom": "200.000",
      "detail": "Telkomsel Data FUT 5",
      "price": 201500,
      "code": "telkomseldatafu5",
      "status": "Active",
      "availability": "Platform",
      "operator": "Telkomsel",
      "category": "Mobile"
    },
    {
      "type": "Credit",
      "code": "telkomseldatafu6",
      "operator": "Telkomsel",
      "price": 141500,
      "status": "Active",
      "denom": "140.000",
      "availability": "Platform",
      "detail": "Telkomsel Data FUT 6",
      "category": "Mobile"
    },
    {
      "price": 337500,
      "denom": "336.000",
      "status": "Active",
      "detail": "Telkomsel Data FUT 8",
      "category": "Mobile",
      "availability": "Platform",
      "code": "telkomseldatafu8",
      "type": "Credit",
      "operator": "Telkomsel"
    },
    {
      "detail": "Game Max 2 GB Kuota DPI Game 1 GB All network Redeem In game item (30 hari)",
      "status": "Active",
      "code": "telkomseldatag01",
      "category": "Mobile",
      "denom": "25.000",
      "type": "Credit",
      "price": 25500,
      "operator": "Telkomsel",
      "availability": "Platform"
    },
    {
      "denom": "30.000",
      "operator": "Telkomsel",
      "category": "Mobile",
      "status": "Active",
      "availability": "Platform",
      "detail": "Broadband Kuota internet 0.7-2GB (sesuai zona), berlaku selama 7 hari",
      "code": "telkomseldatah01",
      "type": "Credit",
      "price": 30400
    },
    {
      "availability": "Platform",
      "category": "Mobile",
      "operator": "Telkomsel",
      "denom": "50.000",
      "price": 50200,
      "type": "Credit",
      "status": "Active",
      "detail": "Broadband Kuota internet 2.5-5.5GB (sesuai zona)+1GB kuota OMG, berlaku selama 30 hari",
      "code": "telkomseldatah02"
    },
    {
      "operator": "Telkomsel",
      "detail": "Broadband Kuota internet 3.5-8.5GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "denom": "75.000",
      "status": "Active",
      "type": "Credit",
      "code": "telkomseldatah03",
      "category": "Mobile",
      "price": 74000,
      "availability": "Platform"
    },
    {
      "denom": "100.000",
      "status": "Active",
      "category": "Mobile",
      "operator": "Telkomsel",
      "type": "Credit",
      "detail": "Broadband Kuota internet 9.5-18GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "availability": "Platform",
      "code": "telkomseldatah04",
      "price": 98000
    },
    {
      "status": "Active",
      "price": 148000,
      "type": "Credit",
      "availability": "Platform",
      "denom": "150.000",
      "category": "Mobile",
      "operator": "Telkomsel",
      "detail": "Broadband Kuota internet 17.5-32GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "code": "telkomseldatah05"
    },
    {
      "price": 198000,
      "availability": "Platform",
      "code": "telkomseldatah06",
      "type": "Credit",
      "status": "Active",
      "category": "Mobile",
      "operator": "Telkomsel",
      "detail": "Broadband Kuota internet 17.5-32GB (sesuai zona)+2GB kuota OMG, berlaku selama 30 hari",
      "denom": "200.000"
    },
    {
      "availability": "Platform",
      "operator": "Telkomsel",
      "denom": "20.000",
      "price": 20500,
      "code": "telkomseldataj01",
      "category": "Mobile",
      "type": "Credit",
      "detail": "Paket Data Disney+hotstar 1 bulan (kuota maxstream 3Gb)",
      "status": "Active"
    },
    {
      "code": "telkomseldataj02",
      "type": "Credit",
      "price": 50100,
      "status": "Active",
      "availability": "Platform",
      "denom": "50.000",
      "detail": "Paket Data Disney+hotstar 3 bulan (kuota maxstream 3GB/bulan)",
      "category": "Mobile",
      "operator": "Telkomsel"
    },
    {
      "code": "telkomseldataj04",
      "status": "Active",
      "operator": "Telkomsel",
      "type": "Credit",
      "category": "Mobile",
      "availability": "Platform",
      "detail": "Paket Data Disney+hotstar 12 bulan (kuota maxstream, 3GB/bulan)",
      "price": 140000,
      "denom": "140.000"
    },
    {
      "status": "Active",
      "price": 80000,
      "detail": "Paket Data Disney+hotstar 6 bulan (kuota maxstream, 3GB/bulan)",
      "category": "Mobile",
      "availability": "Platform",
      "type": "Credit",
      "code": "telkomseldataj03",
      "denom": "80.000",
      "operator": "Telkomsel"
    },
    {
      "operator": "Telkomsel",
      "price": 25500,
      "category": "Mobile",
      "denom": "25.000",
      "detail": "Paket Musicmax Bonus Akses LangitMusik Premium+2 NSP 1 bulan. 5GB Music, 1.25 Internet, 0.25 Youtube",
      "type": "Credit",
      "availability": "Platform",
      "code": "telkomseldatak01",
      "status": "Active"
    },
    {
      "detail": "Internet Promo Umroh 12 days 5GB",
      "category": "Mobile",
      "type": "Package Data",
      "code": "telkomseldataumroh01",
      "availability": "Platform",
      "denom": "264.000",
      "status": "Active",
      "operator": "Telkomsel",
      "price": 265000
    },
    {
      "code": "telkomseldatal02",
      "type": "Credit",
      "status": "Active",
      "denom": "336.000",
      "category": "Mobile",
      "availability": "Platform",
      "price": 336000,
      "detail": "Roamax Internet Asia Australia 5GB",
      "operator": "Telkomsel"
    },
    {
      "category": "Mobile",
      "availability": "Platform",
      "price": 361000,
      "detail": "Internet Promo Umroh 17 days 10GB",
      "status": "Active",
      "type": "Package Data",
      "denom": "360.000",
      "code": "telkomseldataumroh02",
      "operator": "Telkomsel"
    },
    {
      "category": "Mobile",
      "status": "Active",
      "availability": "Platform",
      "detail": "Tri Denom 100.000",
      "price": 98500,
      "denom": "100.000",
      "operator": "Tri",
      "type": "Credit",
      "code": "tri100k"
    },
    {
      "price": 328000,
      "availability": "Platform",
      "category": "Mobile",
      "detail": "Combo Promo Umroh 12 days 5GB, 30min, 30sms",
      "code": "telkomseldataumroh03",
      "operator": "Telkomsel",
      "type": "Package Data",
      "denom": "327.000",
      "status": "Active"
    },
    {
      "code": "telkomseldataumroh04",
      "detail": "Combo Promo Umroh 17 days 10GB, 45min, 45sms",
      "category": "Mobile",
      "availability": "Platform",
      "status": "Active",
      "denom": "528.000",
      "type": "Package Data",
      "price": 529000,
      "operator": "Telkomsel"
    },
    {
      "type": "Credit",
      "status": "Active",
      "availability": "Platform",
      "price": 10900,
      "code": "tri10k",
      "denom": "10.000",
      "category": "Mobile",
      "detail": "Tri Denom 10.000",
      "operator": "Tri"
    },
    {
      "denom": "20.000",
      "type": "Credit",
      "code": "tri20k",
      "category": "Mobile",
      "status": "Active",
      "detail": "Tri Denom 20.000",
      "price": 20200,
      "availability": "Platform",
      "operator": "Tri"
    },
    {
      "price": 25100,
      "type": "Credit",
      "code": "tri25k",
      "availability": "Platform",
      "detail": "Tri Denom 25.000",
      "category": "Mobile",
      "operator": "Tri",
      "status": "Active",
      "denom": "25.000"
    },
    {
      "code": "tri30k",
      "type": "Credit",
      "detail": "Tri Denom 30.000",
      "denom": "30.000",
      "status": "Active",
      "category": "Mobile",
      "availability": "Platform",
      "price": 29800,
      "operator": "Tri"
    },
    {
      "detail": "Tri Denom 40.000",
      "operator": "Tri",
      "category": "Mobile",
      "price": 39600,
      "status": "Active",
      "type": "Credit",
      "denom": "40.000",
      "code": "tri40k",
      "availability": "Platform"
    },
    {
      "price": 6000,
      "code": "tri5k",
      "availability": "Platform",
      "detail": "Tri Denom 5.000",
      "type": "Credit",
      "status": "Active",
      "operator": "Tri",
      "denom": "5.000",
      "category": "Mobile"
    },
    {
      "price": 49500,
      "status": "Active",
      "operator": "Tri",
      "category": "Mobile",
      "code": "tri50k",
      "availability": "Platform",
      "detail": "Tri Denom 50.000",
      "denom": "50.000",
      "type": "Credit"
    },
    {
      "detail": "Tri Denom 75.000",
      "type": "Credit",
      "code": "tri75k",
      "status": "Active",
      "operator": "Tri",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "75.000",
      "price": 73500
    },
    {
      "category": "Mobile",
      "price": 8800,
      "availability": "Platform",
      "detail": "Tri Denom 8.000",
      "denom": "8.000",
      "operator": "Tri",
      "type": "Credit",
      "status": "Active",
      "code": "tri8k"
    },
    {
      "type": "Credit",
      "category": "Mobile",
      "denom": "10.000",
      "detail": "XL Denom 10.000",
      "price": 11500,
      "status": "Active",
      "code": "xl10k",
      "availability": "Platform",
      "operator": "XL"
    },
    {
      "operator": "XL",
      "denom": "15.000",
      "availability": "Platform",
      "price": 15600,
      "status": "Active",
      "detail": "XL Denom 15.000",
      "type": "Credit",
      "code": "xl15k",
      "category": "Mobile"
    },
    {
      "detail": "XL Denom 100.000",
      "price": 99800,
      "availability": "Platform",
      "category": "Mobile",
      "code": "xl100k",
      "operator": "XL",
      "status": "Active",
      "type": "Credit",
      "denom": "100.000"
    },
    {
      "availability": "Platform",
      "operator": "XL",
      "category": "Mobile",
      "detail": "XL Denom 1.000.000",
      "code": "xl1m",
      "type": "Credit",
      "status": "Active",
      "price": 990000,
      "denom": "1.000.000"
    },
    {
      "price": 199500,
      "category": "Mobile",
      "denom": "200.000",
      "operator": "XL",
      "status": "Active",
      "type": "Credit",
      "availability": "Platform",
      "detail": "XL Denom 200.000",
      "code": "xl200k"
    },
    {
      "category": "Mobile",
      "type": "Credit",
      "denom": "25.000",
      "detail": "XL Denom 25.000",
      "status": "Active",
      "operator": "XL",
      "availability": "Platform",
      "price": 25400,
      "code": "xl25k"
    },
    {
      "availability": "Platform",
      "price": 299000,
      "detail": "XL Denom 300.000",
      "operator": "XL",
      "status": "Active",
      "type": "Credit",
      "code": "xl300k",
      "denom": "300.000",
      "category": "Mobile"
    },
    {
      "denom": "30.000",
      "operator": "XL",
      "type": "Credit",
      "category": "Mobile",
      "detail": "XL Denom 30.000",
      "price": 30300,
      "availability": "Platform",
      "status": "Active",
      "code": "xl30k"
    },
    {
      "type": "Credit",
      "category": "Mobile",
      "availability": "Platform",
      "detail": "XL/Axis Denom 500.000",
      "operator": "XL",
      "code": "xl500k",
      "price": 498000,
      "status": "Active",
      "denom": "500.000"
    },
    {
      "operator": "XL",
      "detail": "XL Denom 50.000",
      "type": "Credit",
      "code": "xl50k",
      "availability": "Platform",
      "category": "Mobile",
      "denom": "50.000",
      "price": 50300,
      "status": "Active"
    },
    {
      "operator": "XL",
      "detail": "XL Denom 5.000",
      "denom": "5.000",
      "code": "xl5k",
      "price": 6500,
      "availability": "Platform",
      "status": "Active",
      "type": "Credit",
      "category": "Mobile"
    },
    {
      "code": "axis10k",
      "denom": "10.000",
      "category": "Mobile",
      "price": 11500,
      "detail": "Axis Denom 10.000",
      "status": "Active",
      "operator": "Axis",
      "availability": "Platform",
      "type": "Credit"
    },
    {
      "code": "axis15k",
      "operator": "Axis",
      "denom": "15.000",
      "detail": "Axis Denom 15.000",
      "status": "Active",
      "type": "Credit",
      "price": 15600,
      "availability": "Platform",
      "category": "Mobile"
    },
    {
      "code": "axis1m",
      "price": 990000,
      "availability": "Platform",
      "status": "Active",
      "type": "Credit",
      "detail": "Axis Denom 1.000.000",
      "operator": "Axis",
      "denom": "1.000.000",
      "category": "Mobile"
    },
    {
      "status": "Active",
      "type": "Credit",
      "code": "axis200k",
      "denom": "200.000",
      "detail": "Axis Denom 200.000",
      "category": "Mobile",
      "operator": "Axis",
      "price": 199500,
      "availability": "Platform"
    },
    {
      "availability": "Platform",
      "status": "Active",
      "detail": "Smartfren Denom 5.000",
      "category": "Mobile",
      "denom": "5.000",
      "type": "Credit",
      "operator": "Smartfren",
      "code": "smartfren5k",
      "price": 5900
    },
    {
      "price": 299000,
      "detail": "Axis Denom 300.000",
      "code": "axis300k",
      "status": "Active",
      "category": "Mobile",
      "denom": "300.000",
      "type": "Credit",
      "operator": "Axis",
      "availability": "Platform"
    },
    {
      "operator": "Axis",
      "denom": "30.000",
      "code": "axis30k",
      "status": "Active",
      "availability": "Platform",
      "category": "Mobile",
      "price": 30300,
      "type": "Credit",
      "detail": "Axis Denom 30.000"
    },
    {
      "operator": "Axis",
      "status": "Active",
      "code": "axis500k",
      "price": 498000,
      "type": "Credit",
      "denom": "500.000",
      "availability": "Platform",
      "category": "Mobile",
      "detail": "Axis Denom 500.000"
    },
    {
      "operator": "Axis",
      "availability": "Platform",
      "category": "Mobile",
      "status": "Active",
      "code": "axis50k",
      "detail": "Axis Denom 50.000",
      "price": 50300,
      "type": "Credit",
      "denom": "50.000"
    },
    {
      "status": "Active",
      "type": "Credit",
      "category": "Mobile",
      "denom": "5.000",
      "operator": "Axis",
      "availability": "Platform",
      "code": "axis5k",
      "price": 6500,
      "detail": "Axis Denom 5.000"
    },
    {
      "operator": "Indosat",
      "code": "indosat100k",
      "category": "Mobile",
      "denom": "100.000",
      "detail": "Indosat Denom 100.000",
      "price": 98500,
      "type": "Credit",
      "availability": "Platform",
      "status": "Active"
    },
    {
      "status": "Active",
      "price": 11500,
      "code": "indosat10k",
      "availability": "Platform",
      "denom": "10.000",
      "operator": "Indosat",
      "type": "Credit",
      "detail": "Indosat Denom 10.000",
      "category": "Mobile"
    },
    {
      "operator": "Indosat",
      "availability": "Platform",
      "type": "Credit",
      "detail": "Indosat Denom 15.000",
      "denom": "15.000",
      "category": "Mobile",
      "status": "Active",
      "price": 16500,
      "code": "indosat15k"
    },
    {
      "operator": "Indosat",
      "code": "indosat1m",
      "detail": "Indosat Denom 1.000.000",
      "type": "Credit",
      "denom": "1.000.000",
      "availability": "Platform",
      "category": "Mobile",
      "status": "Active",
      "price": 1001000
    },
    {
      "denom": "20.000",
      "type": "Credit",
      "operator": "Indosat",
      "status": "Active",
      "price": 20600,
      "availability": "Platform",
      "category": "Mobile",
      "code": "indosat20k",
      "detail": "Indosat Denom 20.000"
    },
    {
      "type": "Credit",
      "code": "indosat250k",
      "category": "Mobile",
      "operator": "Indosat",
      "detail": "Indosat Denom 250.000",
      "price": 251000,
      "status": "Active",
      "denom": "250.000",
      "availability": "Platform"
    },
    {
      "denom": "25.000",
      "category": "Mobile",
      "price": 25600,
      "availability": "Platform",
      "status": "Active",
      "operator": "Indosat",
      "code": "indosat25k",
      "detail": "Indosat Denom 25.000",
      "type": "Credit"
    },
    {
      "code": "indosat500k",
      "type": "Credit",
      "denom": "500.000",
      "price": 501000,
      "detail": "Indosat Denom 500.000",
      "category": "Mobile",
      "operator": "Indosat",
      "status": "Active",
      "availability": "Platform"
    },
    {
      "category": "Mobile",
      "denom": "50.000",
      "code": "indosat50k",
      "detail": "Indosat Denom 50.000",
      "operator": "Indosat",
      "availability": "Platform",
      "type": "Credit",
      "status": "Active",
      "price": 49500
    },
    {
      "code": "smartfren100k",
      "denom": "100.000",
      "price": 98500,
      "detail": "Smartfren Denom 100.000",
      "availability": "Platform",
      "status": "Active",
      "operator": "Smartfren",
      "category": "Mobile",
      "type": "Credit"
    },
    {
      "code": "smartfren10k",
      "type": "Credit",
      "price": 10600,
      "operator": "Smartfren",
      "denom": "10.000",
      "status": "Active",
      "availability": "Platform",
      "category": "Mobile",
      "detail": "Smartfren Denom 10.000"
    },
    {
      "status": "Active",
      "type": "Credit",
      "price": 20300,
      "availability": "Platform",
      "code": "smartfren20k",
      "denom": "20.000",
      "category": "Mobile",
      "operator": "Smartfren",
      "detail": "Smartfren Denom 20.000"
    },
    {
      "price": 50000,
      "type": "Credit",
      "detail": "Smartfren Denom 50.000",
      "availability": "Platform",
      "operator": "Smartfren",
      "category": "Mobile",
      "status": "Active",
      "code": "smartfren50k",
      "denom": "50.000"
    },
    {
      "detail": "Axis Denom 25.000",
      "availability": "Platform",
      "denom": "25.000",
      "price": 25400,
      "status": "Active",
      "type": "Credit",
      "operator": "Axis",
      "code": "axis25k",
      "category": "Mobile"
    }
  ]
}

Responses

Status Meaning Description Schema
200 OK OK Inline

Response Schema

Response Headers

Status Header Type Format Description
200 X-Powered-By string none
200 Access-Control-Allow-Origin string none
200 Content-Type string none
200 Content-Length integer none
200 ETag string none
200 Date string none
200 Connection string none
200 Keep-Alive string none