Skip to main content

Check Credit Card

Submit card and billing context data for credit card checker analysis.

Submit Credit Card Check

Endpoint

POST /api/v1/checkers/ccard/

Request Body

{
"user_language": "string",
"user_agent": "string",
"user_ip": "string",
"billing_first_name": "string",
"billing_last_name": "string",
"billing_company": "string",
"billing_country": "string",
"billing_address_1": "string",
"billing_address_2": "string",
"billing_city": "string",
"billing_state": "string",
"billing_zipcode": "string",
"billing_phone": "string",
"billing_email": "string",
"shipping_first_name": "string",
"shipping_last_name": "string",
"shipping_company": "string",
"shipping_country": "string",
"shipping_address_1": "string",
"shipping_address_2": "string",
"shipping_city": "string",
"shipping_state": "string",
"shipping_zipcode": "string",
"shipping_phone": "string",
"shipping_email": "string",
"username": "string",
"password_hash": "string",
"credit_card_bin": "string",
"credit_card_number": "string",
"credit_card_expiration_month": "string",
"credit_card_expiration_year": "string",
"avs_code": "string",
"cvv_code": "string",
"order_amount": "string",
"order_quantity": "string",
"recurring": true,
"recurring_times": 0,
"is_expert_check": true
}

Request Example

curl -X 'POST' \
'https://app.cyberyozh.com/api/v1/checkers/ccard/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here' \
-H 'Content-Type: application/json' \
-d '{
"user_language": "string",
"user_agent": "string",
"user_ip": "string",
"billing_first_name": "string",
"billing_last_name": "string",
"billing_company": "string",
"billing_country": "string",
"billing_address_1": "string",
"billing_address_2": "string",
"billing_city": "string",
"billing_state": "string",
"billing_zipcode": "string",
"billing_phone": "string",
"billing_email": "string",
"shipping_first_name": "string",
"shipping_last_name": "string",
"shipping_company": "string",
"shipping_country": "string",
"shipping_address_1": "string",
"shipping_address_2": "string",
"shipping_city": "string",
"shipping_state": "string",
"shipping_zipcode": "string",
"shipping_phone": "string",
"shipping_email": "string",
"username": "string",
"password_hash": "string",
"credit_card_bin": "string",
"credit_card_number": "string",
"credit_card_expiration_month": "string",
"credit_card_expiration_year": "string",
"avs_code": "string",
"cvv_code": "string",
"order_amount": "string",
"order_quantity": "string",
"recurring": true,
"recurring_times": 0,
"is_expert_check": true
}'

Full Request Fields

FieldTypeRequiredDescription
user_languagestringNoUser language
user_agentstringNoUser-Agent
user_ipstringNoEnd-user IP address
billing_first_namestringNoBilling first name
billing_last_namestringNoBilling last name
billing_companystringNoBilling company
billing_countrystringNoBilling country (name or ISO-2)
billing_address_1stringNoBilling street address line 1
billing_address_2stringNoBilling street address line 2
billing_citystringNoBilling city
billing_statestringNoBilling state/region
billing_zipcodestringNoBilling ZIP/postal code
billing_phonestringNoBilling phone
billing_emailstringNoBilling email
shipping_first_namestringNoShipping first name
shipping_last_namestringNoShipping last name
shipping_companystringNoShipping company
shipping_countrystringNoShipping country
shipping_address_1stringNoShipping street address line 1
shipping_address_2stringNoShipping street address line 2
shipping_citystringNoShipping city
shipping_statestringNoShipping state/region
shipping_zipcodestringNoShipping ZIP/postal code
shipping_phonestringNoShipping phone
shipping_emailstringNoShipping email
usernamestringNoAccount username
password_hashstringNoPassword SHA256 hash
credit_card_binstringNoFirst six digits of card number
credit_card_numberstringNoFull card number
credit_card_expiration_monthstringNoExpiration month
credit_card_expiration_yearstringNoExpiration year
avs_codestringNoAVS response code/value
cvv_codestringNoCVV response code/value
order_amountstringNoOrder amount
order_quantitystringNoOrder quantity
recurringbooleanNoRecurring order flag
recurring_timesintegerNoNumber of recurring payments
is_expert_checkbooleanNoEnable expert check mode

Response (201)

{
"user_language": "string",
"user_agent": "string",
"user_ip": "string",
"billing_first_name": "string",
"billing_last_name": "string",
"billing_company": "string",
"billing_country": "string",
"billing_address_1": "string",
"billing_address_2": "string",
"billing_city": "string",
"billing_state": "string",
"billing_zipcode": "string",
"billing_phone": "string",
"billing_email": "string",
"shipping_first_name": "string",
"shipping_last_name": "string",
"shipping_company": "string",
"shipping_country": "string",
"shipping_address_1": "string",
"shipping_address_2": "string",
"shipping_city": "string",
"shipping_state": "string",
"shipping_zipcode": "string",
"shipping_phone": "string",
"shipping_email": "string",
"username": "string",
"password_hash": "string",
"credit_card_bin": "string",
"credit_card_number": "string",
"credit_card_expiration_month": "string",
"credit_card_expiration_year": "string",
"avs_code": "string",
"cvv_code": "string",
"order_amount": "string",
"order_quantity": "string",
"recurring": true,
"recurring_times": 0,
"is_expert_check": true
}

Notes

  • Request accepts extended billing/shipping/order context fields
  • Checks are asynchronous; use GET endpoints to retrieve final report