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
| Field | Type | Required | Description |
|---|---|---|---|
| Authorization | header string | Yes | Bearer token header in the format Bearer <api_key>. |
| code | path string | Yes | Provider 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
| Field | Type | Required | Description |
|---|---|---|---|
| data.code | string | Yes | Provider code. |
| data.display_name | string | Yes | Provider name for display. |
| data.status | string | Yes | Provider availability status. |
| data.channel | string | Yes | Payment channel. |
| data.processing_type | string | Yes | Processing mode. |
| data.icon_url | string or null | No | Provider icon URL when configured. |
| data.rule.min_deposit | string | Yes | Minimum accepted deposit amount. |
| data.rule.max_deposit | string or null | No | Maximum accepted deposit amount, or null when unlimited. |
| data.rule.fee_percent | string | Yes | Percentage fee applied by the provider. |
| data.rule.fee_flat | string | Yes | Flat fee applied by the provider. |
| data.rule.processing_type | string | Yes | Rule-level processing mode. |
| data.updated_at | ISO datetime | Yes | Last provider update time. |
max_deposit: null means no maximum amount is configured.