Card Generator is a simple tool for generating test/sample card numbers. It returns a list of card numbers for testing.
To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.
Generate a list of test card numbers
This is a required header
on every request. Your API Key is found from within your dashboard
This is an optional header
. Set the value to application/json
, application/xml
, or application/yaml
string
(required)The brand of the card (e.g., visa, mastercard, amex, discover)
countinteger
The number of test card numbers to generate
Sample Request
import requests
url = "https://api.apiverve.com/v1/cardgenerator"
querystring = {'brand': 'visa', 'count': '5'}
headers = {
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers, params=querystring)
print(response.json())
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5"),
Headers =
{
{ "x-api-key", "YOUR_API_KEY" }
},
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', 'https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5');
xhr.setRequestHeader('x-api-key', 'YOUR_API_KEY');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.setRequestHeader('Accept', 'application/json');
xhr.send(data);
const request = require('request');
const options = {
method: 'GET',
url: 'https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5',
headers: {
'x-api-key': 'YOUR_API_KEY'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5"))
.header("x-api-key", "YOUR_API_KEY")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import Foundation
let headers = [
"x-api-key": "YOUR_API_KEY"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
curl --request GET \
--url 'https://api.apiverve.com/v1/cardgenerator?brand=visa&count=5' \
--header 'x-api-key: YOUR_API_KEY'
Sample Response
{
"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-6561
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"status": {
"type": "string"
},
"error": {},
"data": {
"$ref": "#/definitions/Data"
}
},
"definitions": {
"Data": {
"type": "object",
"properties": {
"brand": {
"type": "string"
},
"count": {
"type": "integer"
},
"cards": {
"type": "array",
"items": {
"$ref": "#/definitions/Card"
}
},
"owner": {
"$ref": "#/definitions/Owner"
}
}
},
"Number_alt": {
"type": "object",
"properties": {
"masked": {
"type": "string"
},
"unmasked": {
"type": "string"
},
"last4": {
"type": "string"
}
}
},
"Card": {
"type": "object",
"properties": {
"cvv": {
"type": "integer"
},
"issuer": {
"type": "string"
},
"id": {
"type": "string"
},
"number": {
"type": "string"
},
"expiration": {
"type": "string"
},
"brand": {
"type": "string"
},
"number_alt": {
"$ref": "#/definitions/Number_alt"
}
}
},
"Owner": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"address": {
"$ref": "#/definitions/Address"
}
}
},
"Address": {
"type": "object",
"properties": {
"street": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"zipCode": {
"type": "string"
}
}
}
}
}
openapi: 3.0.4
info:
title: APIVerve
description: Unleash the potential of your applications with a single API Key and access to various APIs
termsOfService: https://apiverve.com/terms/
contact:
name: APIVerve Support
email: [email protected]
url: https://apiverve.com/contact
version: 1.0.9
externalDocs:
description: Learn more about APIVerve
url: https://docs.apiverve.com?utm_source=openapi
servers:
- url: https://api.apiverve.com/
paths:
/v1/cardgenerator:
get:
summary: Generate Card Numbers
description: Card Generator is a simple tool for generating test/sample card numbers. It returns a list of card numbers for testing.
operationId: cardgenerator
parameters:
- name: brand
default: visa
in: query
schema:
type: string
required: true
description: The brand of the card (e.g., visa, mastercard, amex, discover)
example: visa
- name: count
default: '1'
in: query
schema:
type: integer
required: false
description: The number of test card numbers to generate
example: '5'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
properties:
status:
type: string
description: status
error:
type: string
description: error
data:
type: string
description: data
example:
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-6561
'401':
description: Your request was not authorized, or your API Key was invalid
'404':
description: Requested resource was not found
'500':
description: A server error has occured, try again later
components:
securitySchemes:
api_key:
type: apiKey
name: x-api-key
in: header
security:
- api_key: []
The Card Generator API supports the following response content types:
application/json
, application/xml
, application/yaml
You can specify the response content type by setting the Accept
header in your request. If you don't specify a content type, the API will default to application/json
.
The Card Generator API uses an API Key to authenticate requests. You can view and manage your API key by visiting your dashboard.
Your API keys carry many privileges. To keep them from being abused, please do not share the keys on client-side code or Github etc. Keep them very secure.
All requests made to the API must contain the header x-api-key
in each of your requests. API requests without authentication will fail.
All API requests must also be made over secure HTTPS
. Requests made over plain HTTP
will fail.
Error Code | Meaning |
---|---|
401 | Your request was made with invalid credentials. This error also appears when you don't pass the x-api-key header in your request.
|
{
"status": "error",
"data": null,
"error": "tokens have been depleted",
"code": 429
}
Each subscription has its own monthly token limit. Your token count is based on your subscription plan. If you reach your limits, don't worry. You can always upgrade or downgrade at any time. View Pricing
When you reach your limit, the service will stop responding and typically return an HTTP 429
response status code. The error will also contain a detailed JSON.
The Card Generator API uses the following error code:
Error Code | Meaning |
---|---|
429 | You have exceeded your rate limit and further requests will be denied until the next cycle. |
For reference, the Card Generator API uses the following error codes:
Error Code | Meaning |
---|---|
Code | Message |
200 | The request was successful. The response will include the requested data. |
400 | The request was invalid. The response will include a message that explains the error. |
401 | The request was not authorized. Usually, this means that the API key is missing or invalid. |
403 | This means that the request was trying to access a resource that it does not have permission to access. |
404 | This means that the resource you are trying to access does not exist. |
429 | This means that you have reached the rate limit. The response will include a Retry-After header that indicates how many seconds you need to wait before making a new request. |
500 | This means that there was an error on the server side. We are alerted when this happens and we will work to fix it as soon as possible. |