Skip to main content

Test Card Generator API

Card Generator is a simple tool for generating test/sample card numbers. It returns a list of card numbers for testing.

Build Status Code Climate Prod Ready

This is a Python API Wrapper for the Test Card Generator API


Installation

Using pip:

pip install apiverve-testcardgenerator

Using pip3:

pip3 install apiverve-testcardgenerator

Configuration

Before using the cardgenerator API client, you have to setup your account and obtain your API Key. You can get it by signing up at https://apiverve.com


Quick Start

Here's a simple example to get you started quickly:

from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient

# Initialize the client with your APIVerve API key
api = CardgeneratorAPIClient("[YOUR_API_KEY]")

query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}

try:
    # Make the API call
    result = api.execute(query)

    # Print the result
    print(result)
except Exception as e:
    print(f"Error: {e}")

Usage

The Test Card Generator API documentation is found here: https://docs.apiverve.com/ref/cardgenerator. You can find parameters, example responses, and status codes documented here.

Setup

# Import the client module
from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient

# Initialize the client with your APIVerve API key
api = CardgeneratorAPIClient("[YOUR_API_KEY]")

Perform Request

Using the API client, you can perform requests to the API.

Define Query
query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}
Simple Request
# Make a request to the API
result = api.execute(query)

# Print the result
print(result)
Example Response
{
  "status": "ok",
  "error": null,
  "data": {
    "brand": "visa",
    "count": 5,
    "cards": [
      {
        "cvv": 175,
        "issuer": "SOUTHEAST F.C.U.",
        "id": "0faca124-9a33-4ac6-a3df-8bf103025779",
        "number": "4750377207233152",
        "expiration": "12/2030",
        "brand": "visa",
        "number_alt": {
          "masked": "************3152",
          "unmasked": "4750 3772 0723 3152",
          "last4": "3152"
        }
      },
      {
        "cvv": 129,
        "issuer": "U.S. BANK, N.A.",
        "id": "0d074efe-69e2-4e30-b49a-4cead1ea8411",
        "number": "4431387818727358",
        "expiration": "12/2030",
        "brand": "visa",
        "number_alt": {
          "masked": "************7358",
          "unmasked": "4431 3878 1872 7358",
          "last4": "7358"
        }
      },
      {
        "cvv": 249,
        "issuer": "AUGUSTA VAH F.C.U.",
        "id": "2f01f458-7422-400e-bbcf-41364564193b",
        "number": "4425919427248836",
        "expiration": "12/2030",
        "brand": "visa",
        "number_alt": {
          "masked": "************8836",
          "unmasked": "4425 9194 2724 8836",
          "last4": "8836"
        }
      },
      {
        "cvv": 892,
        "issuer": "CITIZENS SECURITY BANK AND TRUST COMPANY",
        "id": "d311e9d0-f410-4f75-a21f-f14125c88cbb",
        "number": "4127737519045634",
        "expiration": "12/2030",
        "brand": "visa",
        "number_alt": {
          "masked": "************5634",
          "unmasked": "4127 7375 1904 5634",
          "last4": "5634"
        }
      },
      {
        "cvv": 524,
        "issuer": "CREDIT LIBANAIS S.A.L.",
        "id": "64113f4d-c625-43d2-9d82-04f220c9e26f",
        "number": "4741441509416816",
        "expiration": "12/2030",
        "brand": "visa",
        "number_alt": {
          "masked": "************6816",
          "unmasked": "4741 4415 0941 6816",
          "last4": "6816"
        }
      }
    ],
    "owner": {
      "name": "Benny Swaniawski",
      "address": {
        "street": "007 Nelson Mountains",
        "city": "Margueriteton",
        "state": "Washington",
        "zipCode": "39956-7950"
      },
      "avatar": "https://storage.googleapis.com/apiverve/APIResources/faces/Male/30-40/12345678.jpg?X-Goog-Signature=..."
    }
  }
}

Error Handling

The API client provides comprehensive error handling through the CardgeneratorAPIClientError exception. Here are some examples:

Basic Error Handling

from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient, CardgeneratorAPIClientError

api = CardgeneratorAPIClient("[YOUR_API_KEY]")

query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}

try:
    result = api.execute(query)
    print("Success!")
    print(result)
except CardgeneratorAPIClientError as e:
    print(f"API Error: {e.message}")
    if e.status_code:
        print(f"Status Code: {e.status_code}")
    if e.response:
        print(f"Response: {e.response}")

Handling Specific Error Types

from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient, CardgeneratorAPIClientError

api = CardgeneratorAPIClient("[YOUR_API_KEY]")

query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}

try:
    result = api.execute(query)

    # Check for successful response
    if result.get('status') == 'success':
        print("Request successful!")
        print(result.get('data'))
    else:
        print(f"API returned an error: {result.get('error')}")

except CardgeneratorAPIClientError as e:
    # Handle API client errors
    if e.status_code == 401:
        print("Unauthorized: Invalid API key")
    elif e.status_code == 429:
        print("Rate limit exceeded")
    elif e.status_code >= 500:
        print("Server error - please try again later")
    else:
        print(f"API error: {e.message}")
except Exception as e:
    # Handle unexpected errors
    print(f"Unexpected error: {str(e)}")

Using Context Manager (Recommended)

The client supports the context manager protocol for automatic resource cleanup:

from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient, CardgeneratorAPIClientError

query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}

# Using context manager ensures proper cleanup
with CardgeneratorAPIClient("[YOUR_API_KEY]") as api:
    try:
        result = api.execute(query)
        print(result)
    except CardgeneratorAPIClientError as e:
        print(f"Error: {e.message}")
# Session is automatically closed here

Advanced Features

Debug Mode

Enable debug logging to see detailed request and response information:

from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient

# Enable debug mode
api = CardgeneratorAPIClient("[YOUR_API_KEY]", debug=True)

query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}

# Debug information will be printed to console
result = api.execute(query)

Manual Session Management

If you need to manually manage the session lifecycle:

from apiverve_testcardgenerator.apiClient import CardgeneratorAPIClient

api = CardgeneratorAPIClient("[YOUR_API_KEY]")

query = {
    "brand": "visa",
    "count": 1,
    "includeAvatar": true
}

try:
    result = api.execute(query)
    print(result)
finally:
    # Manually close the session when done
    api.close()

Customer Support

Need any assistance? Get in touch with Customer Support.


Updates

Stay up to date by following @apiverveHQ on Twitter.


Legal

All usage of the APIVerve website, API, and services is subject to the APIVerve Terms of Service and all legal documents and agreements.


License

Licensed under the The MIT License (MIT)

Copyright (©) 2026 APIVerve, and EvlarSoft LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apiverve_testcardgenerator-1.2.0.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

apiverve_testcardgenerator-1.2.0-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file apiverve_testcardgenerator-1.2.0.tar.gz.

File metadata

File hashes

Hashes for apiverve_testcardgenerator-1.2.0.tar.gz
Algorithm Hash digest
SHA256 99476e7c7459a6033fe626ac2fe12438f2cb1bd4ddb6cd6b48576586b418472e
MD5 3b1829fcbd3d61e3b2a5d77402adab8d
BLAKE2b-256 5dddc733803a413df1ddbc86f08b64343c98485159d9fbe8b14b88bd41852560

See more details on using hashes here.

File details

Details for the file apiverve_testcardgenerator-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for apiverve_testcardgenerator-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b9bdb5fa28b40ade1860f047fd128fb7a710114d49a84d29ed5bb68039f2df76
MD5 54279194f4b1389e993216da0d76feb5
BLAKE2b-256 635981f19df69708637022d7f4ae31f2a3c06b1a04909fcfb495a8800d4c15a1

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.2.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page