Card Generator
Card Generator is a simple tool for generating test/sample card numbers. It returns a list of card numbers for testing.
This API provides reliable and fast access to card generator data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.
To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.
View API in DirectoryEndpoint
GET https://api.apiverve.com/v1/cardgeneratorCode Examples
Here are examples of how to call this API in different programming languages:
curl -X GET \
"https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5" \
-H "X-API-Key: your_api_key_here"const response = await fetch('https://api.apiverve.com/v1/cardgenerator', {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
response = requests.get('https://api.apiverve.com/v1/cardgenerator', headers=headers)
data = response.json()
print(data)const https = require('https');
const url = require('url');
const options = {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
};
const req = https.request('https://api.apiverve.com/v1/cardgenerator', options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => console.log(JSON.parse(data)));
});
req.end();<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/cardgenerator');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-Key: your_api_key_here',
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
?>package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/cardgenerator", nil)
req.Header.Set("X-API-Key", "your_api_key_here")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require 'net/http'
require 'json'
uri = URI('https://api.apiverve.com/v1/cardgenerator')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'
response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))Authentication
This API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereGraphQL AccessBETA
Most APIVerve APIs support GraphQL queries, allowing you to combine multiple API calls into a single request and retrieve only the data you need. This powerful feature enables you to orchestrate complex data fetching with precise field selection.
Not all APIs support GraphQL. Check the API schema or test in the GraphQL Explorer to confirm availability for this specific endpoint.
Token Cost: GraphQL requests cost 1 token for orchestration, plus the standard token cost for each API called in your query. For example, querying 3 APIs in a single GraphQL request would cost 1 + 3 = 4 tokens total.
POST https://api.apiverve.com/v1/graphqlquery {
cardgenerator(
input: { brand: "visa", count: "5" }
) {
brand
count
cards
owner
}
}Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.
Parameters
The following parameters are available for this API endpoint:
| Parameter | Type | Required | Location | Description | Example |
|---|---|---|---|---|---|
| brand | string | Yes | query | The brand of the card (e.g., visa, mastercard, amex, discover) | visa |
| count | integer | No | query | The number of test card numbers to generate | 5 |
Response
The API returns responses in JSON, XML, and YAML formats:
Example Responses
{
"status": "ok",
"error": null,
"data": {
"brand": "visa",
"count": 5,
"cards": [
{
"cvv": 798,
"issuer": "BANCO BILBAO VIZCAYA ARGENTARIA PARAGUAY, S.A.",
"id": "c5805305-62df-43d8-bdfd-ac72b459cc64",
"number": "4236228422790803",
"expiration": "05/2030",
"brand": "visa",
"number_alt": {
"masked": "************0803",
"unmasked": "4236 2284 2279 0803",
"last4": "0803"
}
},
{
"cvv": 284,
"issuer": "IDBI BANK, LTD.",
"id": "6a9d0686-6390-40d3-81a9-83cb7da1e1e1",
"number": "4581393917480061",
"expiration": "05/2030",
"brand": "visa",
"number_alt": {
"masked": "************0061",
"unmasked": "4581 3939 1748 0061",
"last4": "0061"
}
},
{
"cvv": 184,
"issuer": "CREDIT SAISON CO., LTD.",
"id": "97e9a5cb-0bd1-46d5-b486-61caf7692155",
"number": "4541313270704781",
"expiration": "05/2030",
"brand": "visa",
"number_alt": {
"masked": "************4781",
"unmasked": "4541 3132 7070 4781",
"last4": "4781"
}
},
{
"cvv": 649,
"issuer": "CARD SERVICES FOR CREDIT UNIONS, INC.",
"id": "013f5e59-5c1a-4c92-a2a7-171384de2416",
"number": "4148851836478785",
"expiration": "05/2030",
"brand": "visa",
"number_alt": {
"masked": "************8785",
"unmasked": "4148 8518 3647 8785",
"last4": "8785"
}
},
{
"cvv": 161,
"issuer": "JPMORGAN CHASE BANK, N.A.",
"id": "d4cf0704-7c48-4221-bcae-53c676261487",
"number": "4867963822584424",
"expiration": "05/2030",
"brand": "visa",
"number_alt": {
"masked": "************4424",
"unmasked": "4867 9638 2258 4424",
"last4": "4424"
}
}
],
"owner": {
"name": "Herman Gulgowski",
"address": {
"street": "3659 Konopelski Coves",
"city": "Schmittburgh",
"state": "Utah",
"zipCode": "01681-6561"
}
}
}
}<Root>
<status>ok</status>
<error />
<data>
<brand>visa</brand>
<count>5</count>
<cards>
<cvv>798</cvv>
<issuer>BANCO BILBAO VIZCAYA ARGENTARIA PARAGUAY, S.A.</issuer>
<id>c5805305-62df-43d8-bdfd-ac72b459cc64</id>
<number>4236228422790803</number>
<expiration>05/2030</expiration>
<brand>visa</brand>
<number_alt>
<masked>************0803</masked>
<unmasked>4236 2284 2279 0803</unmasked>
<last4>0803</last4>
</number_alt>
</cards>
<cards>
<cvv>284</cvv>
<issuer>IDBI BANK, LTD.</issuer>
<id>6a9d0686-6390-40d3-81a9-83cb7da1e1e1</id>
<number>4581393917480061</number>
<expiration>05/2030</expiration>
<brand>visa</brand>
<number_alt>
<masked>************0061</masked>
<unmasked>4581 3939 1748 0061</unmasked>
<last4>0061</last4>
</number_alt>
</cards>
<cards>
<cvv>184</cvv>
<issuer>CREDIT SAISON CO., LTD.</issuer>
<id>97e9a5cb-0bd1-46d5-b486-61caf7692155</id>
<number>4541313270704781</number>
<expiration>05/2030</expiration>
<brand>visa</brand>
<number_alt>
<masked>************4781</masked>
<unmasked>4541 3132 7070 4781</unmasked>
<last4>4781</last4>
</number_alt>
</cards>
<cards>
<cvv>649</cvv>
<issuer>CARD SERVICES FOR CREDIT UNIONS, INC.</issuer>
<id>013f5e59-5c1a-4c92-a2a7-171384de2416</id>
<number>4148851836478785</number>
<expiration>05/2030</expiration>
<brand>visa</brand>
<number_alt>
<masked>************8785</masked>
<unmasked>4148 8518 3647 8785</unmasked>
<last4>8785</last4>
</number_alt>
</cards>
<cards>
<cvv>161</cvv>
<issuer>JPMORGAN CHASE BANK, N.A.</issuer>
<id>d4cf0704-7c48-4221-bcae-53c676261487</id>
<number>4867963822584424</number>
<expiration>05/2030</expiration>
<brand>visa</brand>
<number_alt>
<masked>************4424</masked>
<unmasked>4867 9638 2258 4424</unmasked>
<last4>4424</last4>
</number_alt>
</cards>
<owner>
<name>Herman Gulgowski</name>
<address>
<street>3659 Konopelski Coves</street>
<city>Schmittburgh</city>
<state>Utah</state>
<zipCode>01681-6561</zipCode>
</address>
</owner>
</data>
</Root>status: ok
error:
data:
brand: visa
count: 5
cards:
- cvv: 798
issuer: BANCO BILBAO VIZCAYA ARGENTARIA PARAGUAY, S.A.
id: c5805305-62df-43d8-bdfd-ac72b459cc64
number: 4236228422790803
expiration: 05/2030
brand: visa
number_alt:
masked: '************0803'
unmasked: 4236 2284 2279 0803
last4: 0803
- cvv: 284
issuer: IDBI BANK, LTD.
id: 6a9d0686-6390-40d3-81a9-83cb7da1e1e1
number: 4581393917480061
expiration: 05/2030
brand: visa
number_alt:
masked: '************0061'
unmasked: 4581 3939 1748 0061
last4: 0061
- cvv: 184
issuer: CREDIT SAISON CO., LTD.
id: 97e9a5cb-0bd1-46d5-b486-61caf7692155
number: 4541313270704781
expiration: 05/2030
brand: visa
number_alt:
masked: '************4781'
unmasked: 4541 3132 7070 4781
last4: 4781
- cvv: 649
issuer: CARD SERVICES FOR CREDIT UNIONS, INC.
id: 013f5e59-5c1a-4c92-a2a7-171384de2416
number: 4148851836478785
expiration: 05/2030
brand: visa
number_alt:
masked: '************8785'
unmasked: 4148 8518 3647 8785
last4: 8785
- cvv: 161
issuer: JPMORGAN CHASE BANK, N.A.
id: d4cf0704-7c48-4221-bcae-53c676261487
number: 4867963822584424
expiration: 05/2030
brand: visa
number_alt:
masked: '************4424'
unmasked: 4867 9638 2258 4424
last4: 4424
owner:
name: Herman Gulgowski
address:
street: 3659 Konopelski Coves
city: Schmittburgh
state: Utah
zipCode: 01681-6561Response Structure
All API responses follow a consistent structure with the following fields:
| Field | Type | Description | Example |
|---|---|---|---|
| status | string | Indicates whether the request was successful ("ok") or failed ("error") | ok |
| error | string | null | Contains error message if status is "error", otherwise null | null |
| data | object | null | Contains the API response data if successful, otherwise null | {...} |
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value |
|---|---|---|
| brand | string | "visa" |
| count | number | 5 |
| cards | array | [{"cvv":798,"issuer":"BANCO BILBAO VIZCAYA ARGENTARIA PARAGUAY, S.A.","id":"c5805305-62df-43d8-bdfd-ac72b459cc64","number":"4236228422790803","expiration":"05/2030","brand":"visa","number_alt":{"masked":"************0803","unmasked":"4236 2284 2279 0803","last4":"0803"}}, ...] |
| owner | object | {...} |
| owner.name | string | "Herman Gulgowski" |
| owner.address | object | {...} |
| owner.address.street | string | "3659 Konopelski Coves" |
| owner.address.city | string | "Schmittburgh" |
| owner.address.state | string | "Utah" |
| owner.address.zipCode | string | "01681-6561" |
Headers
Required and optional headers for API requests:
| Header Name | Required | Example Value | Description |
|---|---|---|---|
| X-API-Key | Yes | your_api_key_here | Your APIVerve API key. Found in your dashboard under API Keys. |
| Accept | No | application/json | Specify response format: application/json (default), application/xml, or application/yaml |
| User-Agent | No | MyApp/1.0 | Identifies your application for analytics and debugging purposes |
| X-Request-ID | No | req_123456789 | Custom request identifier for tracking and debugging requests |
| Cache-Control | No | no-cache | Control caching behavior for the request and response |
Client Libraries
To get started with minimal code, most of our APIs are available through client libraries and clients:
Error Codes
The API uses standard HTTP status codes to indicate success or failure:
| Status Code | Message | Description |
|---|---|---|
| 200 | OK | Request successful, data returned |
| 400 | Bad Request | Invalid request parameters or malformed request |
| 401 | Unauthorized | Missing or invalid API key |
| 403 | Forbidden | API key does not have permission for this endpoint |
| 429 | Too Many Requests | Rate limit exceeded, please slow down requests |
| 500 | Internal Server Error | Server error, please try again later |
Was this page helpful?
Help us improve our documentation




