BCheck API Documentation
Seamlessly integrate our premium CVV checker into your applications with our powerful API.
API Endpoint
POST
https://bcheck.tech/api/checks
Request Headers
Request Body
{
"cc": "4111111111111111|12|2025|123"
}
Example Response
{
"success": true,
"return": "#LIVE",
"key": "f6dffa23-af7f-47a2-ac1d-6e71fdfc566b",
"cc": "50961354552122212|10|2031|054",
"ccFormated": {
"number":"50961354552122212",
"month": "10",
"year": "2031",
"cvv": "054"
},
"bin": "CREDIT - GOLD - ELO - BRAZIL"
}
Code Examples
1const axios = require('axios');
2
3 axios.post('https://bcheck.tech/api/checks', {
4 cc: '<NUM|MM|YYYY|CVV>',
5 }, {
6 headers: {
7 'Content-Type': 'application/json',
8 'token': '<TOKEN>',
9 }
10 }).then(response => {
11 console.log(response.data);
12 }).catch(error => {
13 console.error(error);
14 });