Skip to main content
POST
/
v1
/
price-list
Price List
curl --request POST \
  --url https://api.example.com/v1/price-list

Price List

Fetch the complete product catalog with real-time pricing. Use this to display products on your storefront.

Request

POST /v1/price-list
{
  "api_key": "your-api-key",
  "sign": "MD5(api_key + api_secret + pricelist)",
  "category": "games",
  "brand": "MOBILE LEGENDS"
}

Signature

sign = MD5(api_key + api_secret + "pricelist")

Optional Filters

FieldTypeDescription
categorystringFilter by category: games, voucher, pulsa
brandstringFilter by brand: MOBILE LEGENDS, FREE FIRE

Response

200
{
  "success": true,
  "data": [
    {
      "product_sku": "ml-diamonds-86",
      "product_name": "Mobile Legends 86 Diamonds",
      "brand": "MOBILE LEGENDS",
      "category": "games",
      "price": 16500,
      "selling_price": 18000,
      "status": true,
      "description": "86 (80+6) Diamonds Mobile Legends"
    },
    {
      "product_sku": "ml-diamonds-170",
      "product_name": "Mobile Legends 170 Diamonds",
      "brand": "MOBILE LEGENDS",
      "category": "games",
      "price": 33000,
      "selling_price": 35000,
      "status": true,
      "description": "170 (159+11) Diamonds Mobile Legends"
    }
  ],
  "message": "OK"
}

Product Fields

FieldTypeDescription
product_skustringUnique product SKU code
product_namestringProduct display name
brandstringBrand / game name
categorystringProduct category
pricenumberYour reseller purchase price (IDR)
selling_pricenumberSuggested selling price (IDR)
statusbooleanWhether product is currently available
descriptionstringProduct description
Cache the price list for 5-10 minutes on your side to reduce API calls. Prices typically update every 30 minutes.