Deposits

Deposit Provider Detail

Read amount limits, fees, and payment channel for one provider.

Modified at Apr 28, 2026, 05:38 AM UTC

GET/api/deposit/provider/{code}deposit.provider.list

Returns amount limits, fees, and payment channel details for one deposit provider.

Request

curl "https://cekceir.online/api/deposit/provider/{code}" \
  -H "Authorization: Bearer <api_key>" \

Request Fields

FieldTypeRequiredDescription
Authorizationheader stringYesBearer token header in the format Bearer <api_key>.
codepath stringYesProvider code, such as gopay or bank_bca.

Success Response

{  "data": {    "code": "gopay",    "display_name": "GoPay",    "status": "active",    "channel": "qris",    "processing_type": "automatic",    "icon_url": "https://example.com/gopay.png",    "rule": {      "min_deposit": "10000",      "max_deposit": null,      "fee_percent": "0",      "fee_flat": "0",      "processing_type": "automatic"    },    "updated_at": "2026-04-26T00:00:00.000Z"  }}

Response Fields

FieldTypeRequiredDescription
data.codestringYesProvider code.
data.display_namestringYesProvider name for display.
data.statusstringYesProvider availability status.
data.channelstringYesPayment channel.
data.processing_typestringYesProcessing mode.
data.icon_urlstring or nullNoProvider icon URL when configured.
data.rule.min_depositstringYesMinimum accepted deposit amount.
data.rule.max_depositstring or nullNoMaximum accepted deposit amount, or null when unlimited.
data.rule.fee_percentstringYesPercentage fee applied by the provider.
data.rule.fee_flatstringYesFlat fee applied by the provider.
data.rule.processing_typestringYesRule-level processing mode.
data.updated_atISO datetimeYesLast provider update time.

max_deposit: null means no maximum amount is configured.