Skip to main content
GET
/
{version}
/
predictions
/
card-provider-info
Predict Card Provider Info
curl --request GET \
  --url https://api.example.com/{version}/predictions/card-provider-info \
  --header 'Authorization: Bearer <token>'
{
  "country": "<string>",
  "currencies": [
    "<string>"
  ],
  "payment_method": "<string>",
  "gateway_provider": "<string>",
  "operation_type": "<string>",
  "brand": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

version
string
required
Allowed value: "v1"

Query Parameters

payment_method_id
string
required
operation_type
enum<string>
required
Available options:
COLLECTION,
PAYOUT,
TRANSFER,
REFUND
provider
string | null
Allowed value: "STRIPE"

Response

Successful Response

PredictCardPaymentInfoResponse

country
string
required
currencies
string[]
required
Required string length: 3
payment_method
string
required
gateway_provider
string
required
operation_type
string
required
brand
string
required
Last modified on June 23, 2026