> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ngapainrepot.space/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ngapainrepot.space/_mcp/server.

# Get Catalog Product List

GET https://c-dev-api.rajabiller.com/catalog/products

Reference: https://docs.ngapainrepot.space/biller/category/get-catalog-product-list

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /catalog/products:
    get:
      operationId: get-catalog-product-list
      summary: Get Catalog Product List
      tags:
        - subpackage_category
      parameters:
        - name: categoryCode
          in: query
          required: false
          schema:
            type: string
        - name: operatorCode
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
        - name: offset
          in: query
          required: false
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Category_Get Catalog Product
                  List_Response_200
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCatalogProductsRequestBadRequestError'
servers:
  - url: https://c-dev-api.rajabiller.com
    description: https://c-dev-api.rajabiller.com
  - url: https:/
    description: https://{base_url}
  - url: https://api.stg.servermitra.com
    description: https://api.stg.servermitra.com
components:
  schemas:
    CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsDisplay:
      type: object
      properties:
        badges:
          type: array
          items:
            description: Any type
        imageUrl:
          description: Any type
      required:
        - badges
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsDisplay
    CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsPricing:
      type: object
      properties:
        regularPrice:
          description: Any type
        sellingPrice:
          type: integer
        discountAmount:
          description: Any type
        discountPercentage:
          description: Any type
      required:
        - sellingPrice
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsPricing
    CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsAttributes:
      type: object
      properties:
        validityDays:
          type: integer
      required:
        - validityDays
      title: >-
        CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsAttributes
    CatalogProductsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        code:
          type: string
        name:
          type: string
        display:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsDisplay
        pricing:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsPricing
        promotion:
          description: Any type
        attributes:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaDataItemsAttributes
        isSellable:
          type: boolean
        description:
          description: Any type
        denominationLabel:
          description: Any type
        denominationAmount:
          description: Any type
      required:
        - code
        - name
        - display
        - pricing
        - attributes
        - isSellable
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaDataItems
    CatalogProductsGetResponsesContentApplicationJsonSchemaMeta:
      type: object
      properties:
        requestId:
          type: string
        timestamp:
          type: string
          format: date-time
      required:
        - requestId
        - timestamp
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaMeta
    CatalogProductsGetResponsesContentApplicationJsonSchemaContextCategory:
      type: object
      properties:
        code:
          type: string
        label:
          type: string
      required:
        - code
        - label
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaContextCategory
    CatalogProductsGetResponsesContentApplicationJsonSchemaContextOperator:
      type: object
      properties:
        code:
          type: string
        label:
          type: string
        logoUrl:
          description: Any type
      required:
        - code
        - label
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaContextOperator
    CatalogProductsGetResponsesContentApplicationJsonSchemaContextAvailability:
      type: object
      properties:
        status:
          type: string
        message:
          description: Any type
        timezone:
          type: string
        reasonCode:
          description: Any type
        isAvailable:
          type: boolean
        nextAvailableAt:
          description: Any type
      required:
        - status
        - timezone
        - isAvailable
      title: >-
        CatalogProductsGetResponsesContentApplicationJsonSchemaContextAvailability
    CatalogProductsGetResponsesContentApplicationJsonSchemaContext:
      type: object
      properties:
        category:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaContextCategory
        currency:
          type: string
        flowType:
          type: string
        operator:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaContextOperator
        inputSchema:
          description: Any type
        availability:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaContextAvailability
      required:
        - category
        - currency
        - flowType
        - operator
        - availability
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaContext
    Category_Get Catalog Product List_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaDataItems
        meta:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaMeta
        context:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaContext
        success:
          type: boolean
      required:
        - data
        - meta
        - context
        - success
      title: Category_Get Catalog Product List_Response_200
    CatalogProductsGetResponsesContentApplicationJsonSchemaErrorFieldErrors:
      type: object
      properties:
        serviceCode:
          type: array
          items:
            type: string
      required:
        - serviceCode
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaErrorFieldErrors
    CatalogProductsGetResponsesContentApplicationJsonSchemaError:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        statusCode:
          type: integer
        fieldErrors:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaErrorFieldErrors
      required:
        - code
        - message
        - statusCode
        - fieldErrors
      title: CatalogProductsGetResponsesContentApplicationJsonSchemaError
    GetCatalogProductsRequestBadRequestError:
      type: object
      properties:
        meta:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaMeta
        error:
          $ref: >-
            #/components/schemas/CatalogProductsGetResponsesContentApplicationJsonSchemaError
        success:
          type: boolean
      required:
        - meta
        - error
        - success
      title: GetCatalogProductsRequestBadRequestError

```

## Examples

### Pulsa (200 - OK)



**Request**

```json
{}
```

**Response**

```json
{
  "data": [
    {
      "code": "TELKOMSEL_PREPAID_S5Z",
      "name": "TELKOMSEL 5rb",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 10365,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "5K",
      "denominationAmount": 5000
    },
    {
      "code": "TELKOMSEL_PREPAID_S100H",
      "name": "TELKOMSEL SIMPATI / AS 100RB H2H",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 102100,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "100K",
      "denominationAmount": 100000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10H",
      "name": "TELKOMSEL SIMPATI / AS 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15750,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10PP",
      "name": "TELKOMSEL SIMPATI / AS 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15097,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S50H",
      "name": "TELKOMSEL SIMPATI / AS 50RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 54200,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "50K",
      "denominationAmount": 50000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15175,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S20P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 20RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 24850,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "20K",
      "denominationAmount": 20000
    },
    {
      "code": "TELKOMSEL_PREPAID_S50P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 50RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 53500,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "50K",
      "denominationAmount": 50000
    }
  ],
  "meta": {
    "requestId": "req_6faef86d-0117-41e1-b4e3-74a2f8ef72d7",
    "timestamp": "2026-06-22T10:36:52.885Z",
    "pagination": {
      "limit": 50,
      "offset": 0,
      "nextOffset": null,
      "totalItems": 8,
      "hasNextPage": false
    }
  },
  "context": {
    "category": {
      "code": "PHONE_PREPAID",
      "label": "Pulsa"
    },
    "currency": "IDR",
    "flowType": "DIRECT_PURCHASE",
    "operator": {
      "code": "TELKOMSEL",
      "label": "Telkomsel",
      "logoUrl": null,
      "iconUrl": "https://nwkgldatqbnmtdjeliec.supabase.co/storage/v1/object/public/images/billers/phone/operators/logos/small-TELKOMSEL.svg"
    },
    "availability": {
      "status": "AVAILABLE",
      "timezone": "Asia/Jakarta",
      "isAvailable": true,
      "message": null,
      "reasonCode": null,
      "nextAvailableAt": null
    },
    "inputSchema": null
  },
  "success": true
}
```

**SDK Code**

```python Pulsa (200 - OK)
import requests

url = "https://c-dev-api.rajabiller.com/catalog/products"

querystring = {"categoryCode":"PHONE_PREPAID","operatorCode":"TELKOMSEL","limit":"50","offset":"0"}

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.get(url, json=payload, headers=headers, params=querystring)

print(response.json())
```

```javascript Pulsa (200 - OK)
const url = 'https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0';
const options = {method: 'GET', headers: {'Content-Type': 'application/json'}, body: '{}'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Pulsa (200 - OK)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Pulsa (200 - OK)
require 'uri'
require 'net/http'

url = URI("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java Pulsa (200 - OK)
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php Pulsa (200 - OK)
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0', [
  'body' => '{}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Pulsa (200 - OK)
using RestSharp;

var client = new RestClient("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0");
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Pulsa (200 - OK)
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### Paket Data (200 - OK)



**Request**

```json
{}
```

**Response**

```json
{
  "data": [
    {
      "code": "TELKOMSEL_PREPAID_S5Z",
      "name": "TELKOMSEL 5rb",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 10365,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "5K",
      "denominationAmount": 5000
    },
    {
      "code": "TELKOMSEL_PREPAID_S100H",
      "name": "TELKOMSEL SIMPATI / AS 100RB H2H",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 102100,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "100K",
      "denominationAmount": 100000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10H",
      "name": "TELKOMSEL SIMPATI / AS 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15750,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10PP",
      "name": "TELKOMSEL SIMPATI / AS 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15097,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S50H",
      "name": "TELKOMSEL SIMPATI / AS 50RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 54200,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "50K",
      "denominationAmount": 50000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15175,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S20P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 20RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 24850,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "20K",
      "denominationAmount": 20000
    },
    {
      "code": "TELKOMSEL_PREPAID_S50P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 50RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 53500,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "50K",
      "denominationAmount": 50000
    }
  ],
  "meta": {
    "requestId": "req_6faef86d-0117-41e1-b4e3-74a2f8ef72d7",
    "timestamp": "2026-06-22T10:36:52.885Z",
    "pagination": {
      "limit": 50,
      "offset": 0,
      "nextOffset": null,
      "totalItems": 8,
      "hasNextPage": false
    }
  },
  "context": {
    "category": {
      "code": "PHONE_PREPAID",
      "label": "Pulsa"
    },
    "currency": "IDR",
    "flowType": "DIRECT_PURCHASE",
    "operator": {
      "code": "TELKOMSEL",
      "label": "Telkomsel",
      "logoUrl": null,
      "iconUrl": "https://nwkgldatqbnmtdjeliec.supabase.co/storage/v1/object/public/images/billers/phone/operators/logos/small-TELKOMSEL.svg"
    },
    "availability": {
      "status": "AVAILABLE",
      "timezone": "Asia/Jakarta",
      "isAvailable": true,
      "message": null,
      "reasonCode": null,
      "nextAvailableAt": null
    },
    "inputSchema": null
  },
  "success": true
}
```

**SDK Code**

```python Paket Data (200 - OK)
import requests

url = "https://c-dev-api.rajabiller.com/catalog/products"

querystring = {"categoryCode":"PHONE_PREPAID","operatorCode":"TELKOMSEL","limit":"50","offset":"0"}

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.get(url, json=payload, headers=headers, params=querystring)

print(response.json())
```

```javascript Paket Data (200 - OK)
const url = 'https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0';
const options = {method: 'GET', headers: {'Content-Type': 'application/json'}, body: '{}'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Paket Data (200 - OK)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Paket Data (200 - OK)
require 'uri'
require 'net/http'

url = URI("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java Paket Data (200 - OK)
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php Paket Data (200 - OK)
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0', [
  'body' => '{}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Paket Data (200 - OK)
using RestSharp;

var client = new RestClient("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0");
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Paket Data (200 - OK)
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### PLN_PREPAID (200 - OK)



**Request**

```json
{}
```

**Response**

```json
{
  "data": [
    {
      "code": "TELKOMSEL_PREPAID_S5Z",
      "name": "TELKOMSEL 5rb",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 10365,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "5K",
      "denominationAmount": 5000
    },
    {
      "code": "TELKOMSEL_PREPAID_S100H",
      "name": "TELKOMSEL SIMPATI / AS 100RB H2H",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 102100,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "100K",
      "denominationAmount": 100000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10H",
      "name": "TELKOMSEL SIMPATI / AS 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15750,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10PP",
      "name": "TELKOMSEL SIMPATI / AS 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15097,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S50H",
      "name": "TELKOMSEL SIMPATI / AS 50RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 54200,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "50K",
      "denominationAmount": 50000
    },
    {
      "code": "TELKOMSEL_PREPAID_S10P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 10RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 15175,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "10K",
      "denominationAmount": 10000
    },
    {
      "code": "TELKOMSEL_PREPAID_S20P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 20RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 24850,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "20K",
      "denominationAmount": 20000
    },
    {
      "code": "TELKOMSEL_PREPAID_S50P",
      "name": "TELKOMSEL SIMPATI / AS PROMO 50RB",
      "display": {
        "badges": [],
        "imageUrl": null
      },
      "pricing": {
        "sellingPrice": 53500,
        "regularPrice": null,
        "discountAmount": null,
        "discountPercentage": null
      },
      "attributes": {
        "validityDays": 1
      },
      "isSellable": true,
      "promotion": null,
      "description": null,
      "denominationLabel": "50K",
      "denominationAmount": 50000
    }
  ],
  "meta": {
    "requestId": "req_6faef86d-0117-41e1-b4e3-74a2f8ef72d7",
    "timestamp": "2026-06-22T10:36:52.885Z",
    "pagination": {
      "limit": 50,
      "offset": 0,
      "nextOffset": null,
      "totalItems": 8,
      "hasNextPage": false
    }
  },
  "context": {
    "category": {
      "code": "PHONE_PREPAID",
      "label": "Pulsa"
    },
    "currency": "IDR",
    "flowType": "DIRECT_PURCHASE",
    "operator": {
      "code": "TELKOMSEL",
      "label": "Telkomsel",
      "logoUrl": null,
      "iconUrl": "https://nwkgldatqbnmtdjeliec.supabase.co/storage/v1/object/public/images/billers/phone/operators/logos/small-TELKOMSEL.svg"
    },
    "availability": {
      "status": "AVAILABLE",
      "timezone": "Asia/Jakarta",
      "isAvailable": true,
      "message": null,
      "reasonCode": null,
      "nextAvailableAt": null
    },
    "inputSchema": null
  },
  "success": true
}
```

**SDK Code**

```python PLN_PREPAID (200 - OK)
import requests

url = "https://c-dev-api.rajabiller.com/catalog/products"

querystring = {"categoryCode":"PHONE_PREPAID","operatorCode":"TELKOMSEL","limit":"50","offset":"0"}

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.get(url, json=payload, headers=headers, params=querystring)

print(response.json())
```

```javascript PLN_PREPAID (200 - OK)
const url = 'https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0';
const options = {method: 'GET', headers: {'Content-Type': 'application/json'}, body: '{}'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go PLN_PREPAID (200 - OK)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby PLN_PREPAID (200 - OK)
require 'uri'
require 'net/http'

url = URI("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java PLN_PREPAID (200 - OK)
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php PLN_PREPAID (200 - OK)
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0', [
  'body' => '{}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp PLN_PREPAID (200 - OK)
using RestSharp;

var client = new RestClient("https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0");
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift PLN_PREPAID (200 - OK)
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://c-dev-api.rajabiller.com/catalog/products?categoryCode=PHONE_PREPAID&operatorCode=TELKOMSEL&limit=50&offset=0")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```