Bingo Card Generator API
Overview
To use Bingo Card Generator, you need an API key. You can get one by creating a free account and visiting your dashboard.
GET Endpoint
https://api.apiverve.com/v1/bingocardgeneratorExample
How to call the Bingo Card Generator API in different programming languages.
curl -X GET \
"https://api.apiverve.com/v1/bingocardgenerator?size=5&freeSpace=true&image=true" \
-H "X-API-Key: your_api_key_here"const response = await fetch('https://api.apiverve.com/v1/bingocardgenerator?size=5&freeSpace=true&image=true', {
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/bingocardgenerator?size=5&freeSpace=true&image=true', headers=headers)
data = response.json()
print(data)package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/bingocardgenerator?size=5&freeSpace=true&image=true", 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))
}{
"status": "ok",
"error": null,
"data": {
"card": [
[
14,
19,
42,
47,
71
],
[
4,
17,
36,
50,
69
],
[
11,
18,
"FREE",
53,
73
],
[
15,
23,
41,
52,
68
],
[
8,
27,
43,
58,
75
]
],
"html": "<html><head><title>Bingo Card</title><style>body {font-family: Arial, sans-serif; padding: 20px;}table {border-collapse: collapse; margin: 0 auto;}td {text-align: center; width: 60px; height: 60px; border: 2px solid #000; font-size: 20px; font-weight: bold;}th {text-align: center; width: 60px; height: 40px; border: 2px solid #000; font-size: 24px; font-weight: bold; background-color: #4CAF50; color: white;}.free-space {background-color: #FFD700; font-size: 14px;}</style></head><body><table><tr><th>B</th><th>I</th><th>N</th><th>G</th><th>O</th></tr><tr><td class=''>14</td><td class=''>19</td><td class=''>42</td><td class=''>47</td><td class=''>71</td></tr><tr><td class=''>4</td><td class=''>17</td><td class=''>36</td><td class=''>50</td><td class=''>69</td></tr><tr><td class=''>11</td><td class=''>18</td><td class='free-space'>FREE</td><td class=''>53</td><td class=''>73</td></tr><tr><td class=''>15</td><td class=''>23</td><td class=''>41</td><td class=''>52</td><td class=''>68</td></tr><tr><td class=''>8</td><td class=''>27</td><td class=''>43</td><td class=''>58</td><td class=''>75</td></tr></table></body></html>",
"size": 5,
"freeSpace": true,
"totalCells": 25,
"winningPatterns": [
"horizontal",
"vertical",
"diagonal",
"four corners",
"blackout (all cells)"
],
"image": {
"imageName": "8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png",
"format": ".png",
"downloadURL": "https://storage.googleapis.com/apiverve/APIData/bingocardgenerator/8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010022&Signature=ErKaS3I1DaHCBxYRxnjx5QLHm0S3zfpJIWzz7BosGyhDwYSejCHlfcSI%2BKOHJzxEiUdSWFFt947%2BLzHGpVZrLYPxGGvgCVPOKZ4H9vfgyJPP%2BF9LICc9kLG6%2FwevlPsAHHHLjoLS%2F7OVByiwzTWguRzcbyYT44XpbbU0IsOA40S7Utqt%2BjAC5%2FSfhW4z%2FdJE2yXsSNqr3acEJB70cVde3qkP80Iv6H7%2FZB08EDjbakauJmjASJ86H%2BWM2b9BPo250bBzLtGPxW8KZUVgy79SDxJu8VVnzAhiWzcmih9UrBUvejuxkbPIAx6ohwHepmh414G0wvAcxtHRaXx4O5cr7g%3D%3D",
"expires": 1766010022446
}
}
}Authentication
The Bingo Card Generator API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereInteractive API Playground
Test the Bingo Card Generator API directly in your browser with live requests and responses.
Parameters
The following parameters are available for the Bingo Card Generator API:
Generate Bingo Card
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
size | integer | optional | Card size (3x3 to 10x10) Range: 3 - 10 | ||
freeSpace | boolean | optional | Include free space in center | ||
imagePremium | boolean | optional | Set to true to generate a downloadable bingo card image | - |
Response
The Bingo Card Generator API returns responses in JSON, XML, YAML, and CSV formats. The JSON response is shown in the Example section above; alternative formats below.
Other Response Formats
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>ok</status>
<error xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
<data>
<card>
<item>
<item>14</item>
<item>19</item>
<item>42</item>
<item>47</item>
<item>71</item>
</item>
<item>
<item>4</item>
<item>17</item>
<item>36</item>
<item>50</item>
<item>69</item>
</item>
<item>
<item>11</item>
<item>18</item>
<item>FREE</item>
<item>53</item>
<item>73</item>
</item>
<item>
<item>15</item>
<item>23</item>
<item>41</item>
<item>52</item>
<item>68</item>
</item>
<item>
<item>8</item>
<item>27</item>
<item>43</item>
<item>58</item>
<item>75</item>
</item>
</card>
<html><html><head><title>Bingo Card</title><style>body {font-family: Arial, sans-serif; padding: 20px;}table {border-collapse: collapse; margin: 0 auto;}td {text-align: center; width: 60px; height: 60px; border: 2px solid #000; font-size: 20px; font-weight: bold;}th {text-align: center; width: 60px; height: 40px; border: 2px solid #000; font-size: 24px; font-weight: bold; background-color: #4CAF50; color: white;}.free-space {background-color: #FFD700; font-size: 14px;}</style></head><body><table><tr><th>B</th><th>I</th><th>N</th><th>G</th><th>O</th></tr><tr><td class=''>14</td><td class=''>19</td><td class=''>42</td><td class=''>47</td><td class=''>71</td></tr><tr><td class=''>4</td><td class=''>17</td><td class=''>36</td><td class=''>50</td><td class=''>69</td></tr><tr><td class=''>11</td><td class=''>18</td><td class='free-space'>FREE</td><td class=''>53</td><td class=''>73</td></tr><tr><td class=''>15</td><td class=''>23</td><td class=''>41</td><td class=''>52</td><td class=''>68</td></tr><tr><td class=''>8</td><td class=''>27</td><td class=''>43</td><td class=''>58</td><td class=''>75</td></tr></table></body></html></html>
<size>5</size>
<freeSpace>true</freeSpace>
<totalCells>25</totalCells>
<winningPatterns>
<winningPattern>horizontal</winningPattern>
<winningPattern>vertical</winningPattern>
<winningPattern>diagonal</winningPattern>
<winningPattern>four corners</winningPattern>
<winningPattern>blackout (all cells)</winningPattern>
</winningPatterns>
<image>
<imageName>8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png</imageName>
<format>.png</format>
<downloadURL>https://storage.googleapis.com/apiverve/APIData/bingocardgenerator/8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010022&Signature=ErKaS3I1DaHCBxYRxnjx5QLHm0S3zfpJIWzz7BosGyhDwYSejCHlfcSI%2BKOHJzxEiUdSWFFt947%2BLzHGpVZrLYPxGGvgCVPOKZ4H9vfgyJPP%2BF9LICc9kLG6%2FwevlPsAHHHLjoLS%2F7OVByiwzTWguRzcbyYT44XpbbU0IsOA40S7Utqt%2BjAC5%2FSfhW4z%2FdJE2yXsSNqr3acEJB70cVde3qkP80Iv6H7%2FZB08EDjbakauJmjASJ86H%2BWM2b9BPo250bBzLtGPxW8KZUVgy79SDxJu8VVnzAhiWzcmih9UrBUvejuxkbPIAx6ohwHepmh414G0wvAcxtHRaXx4O5cr7g%3D%3D</downloadURL>
<expires>1766010022446</expires>
</image>
</data>
</response>
status: ok
error: null
data:
card:
- - 14
- 19
- 42
- 47
- 71
- - 4
- 17
- 36
- 50
- 69
- - 11
- 18
- FREE
- 53
- 73
- - 15
- 23
- 41
- 52
- 68
- - 8
- 27
- 43
- 58
- 75
html: >-
<html><head><title>Bingo Card</title><style>body {font-family: Arial,
sans-serif; padding: 20px;}table {border-collapse: collapse; margin: 0
auto;}td {text-align: center; width: 60px; height: 60px; border: 2px solid
#000; font-size: 20px; font-weight: bold;}th {text-align: center; width:
60px; height: 40px; border: 2px solid #000; font-size: 24px; font-weight:
bold; background-color: #4CAF50; color: white;}.free-space
{background-color: #FFD700; font-size:
14px;}</style></head><body><table><tr><th>B</th><th>I</th><th>N</th><th>G</th><th>O</th></tr><tr><td
class=''>14</td><td class=''>19</td><td class=''>42</td><td
class=''>47</td><td class=''>71</td></tr><tr><td class=''>4</td><td
class=''>17</td><td class=''>36</td><td class=''>50</td><td
class=''>69</td></tr><tr><td class=''>11</td><td class=''>18</td><td
class='free-space'>FREE</td><td class=''>53</td><td
class=''>73</td></tr><tr><td class=''>15</td><td class=''>23</td><td
class=''>41</td><td class=''>52</td><td class=''>68</td></tr><tr><td
class=''>8</td><td class=''>27</td><td class=''>43</td><td
class=''>58</td><td class=''>75</td></tr></table></body></html>
size: 5
freeSpace: true
totalCells: 25
winningPatterns:
- horizontal
- vertical
- diagonal
- four corners
- blackout (all cells)
image:
imageName: 8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png
format: .png
downloadURL: >-
https://storage.googleapis.com/apiverve/APIData/bingocardgenerator/8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010022&Signature=ErKaS3I1DaHCBxYRxnjx5QLHm0S3zfpJIWzz7BosGyhDwYSejCHlfcSI%2BKOHJzxEiUdSWFFt947%2BLzHGpVZrLYPxGGvgCVPOKZ4H9vfgyJPP%2BF9LICc9kLG6%2FwevlPsAHHHLjoLS%2F7OVByiwzTWguRzcbyYT44XpbbU0IsOA40S7Utqt%2BjAC5%2FSfhW4z%2FdJE2yXsSNqr3acEJB70cVde3qkP80Iv6H7%2FZB08EDjbakauJmjASJ86H%2BWM2b9BPo250bBzLtGPxW8KZUVgy79SDxJu8VVnzAhiWzcmih9UrBUvejuxkbPIAx6ohwHepmh414G0wvAcxtHRaXx4O5cr7g%3D%3D
expires: 1766010022446
| key | value |
|---|---|
| card | [[14,19,42,47,71],[4,17,36,50,69],[11,18,FREE,53,73],[15,23,41,52,68],[8,27,43,58,75]] |
| html | <html><head><title>Bingo Card</title><style>body {font-family: Arial, sans-serif; padding: 20px;}table {border-collapse: collapse; margin: 0 auto;}td {text-align: center; width: 60px; height: 60px; border: 2px solid #000; font-size: 20px; font-weight: bold;}th {text-align: center; width: 60px; height: 40px; border: 2px solid #000; font-size: 24px; font-weight: bold; background-color: #4CAF50; color: white;}.free-space {background-color: #FFD700; font-size: 14px;}</style></head><body><table><tr><th>B</th><th>I</th><th>N</th><th>G</th><th>O</th></tr><tr><td class=''>14</td><td class=''>19</td><td class=''>42</td><td class=''>47</td><td class=''>71</td></tr><tr><td class=''>4</td><td class=''>17</td><td class=''>36</td><td class=''>50</td><td class=''>69</td></tr><tr><td class=''>11</td><td class=''>18</td><td class='free-space'>FREE</td><td class=''>53</td><td class=''>73</td></tr><tr><td class=''>15</td><td class=''>23</td><td class=''>41</td><td class=''>52</td><td class=''>68</td></tr><tr><td class=''>8</td><td class=''>27</td><td class=''>43</td><td class=''>58</td><td class=''>75</td></tr></table></body></html> |
| size | 5 |
| freeSpace | true |
| totalCells | 25 |
| winningPatterns | [horizontal,vertical,diagonal,four corners,blackout (all cells)] |
| image | {imageName:8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png,format:.png,downloadURL:https://storage.googleapis.com/apiverve/APIData/bingocardgenerator/8dcb6cee-a419-4501-a13c-ff6eafd393b7_bingo.png?GoogleAccessId=635500398038-compute%40developer.gserviceaccount.com&Expires=1766010022&Signature=ErKaS3I1DaHCBxYRxnjx5QLHm0S3zfpJIWzz7BosGyhDwYSejCHlfcSI%2BKOHJzxEiUdSWFFt947%2BLzHGpVZrLYPxGGvgCVPOKZ4H9vfgyJPP%2BF9LICc9kLG6%2FwevlPsAHHHLjoLS%2F7OVByiwzTWguRzcbyYT44XpbbU0IsOA40S7Utqt%2BjAC5%2FSfhW4z%2FdJE2yXsSNqr3acEJB70cVde3qkP80Iv6H7%2FZB08EDjbakauJmjASJ86H%2BWM2b9BPo250bBzLtGPxW8KZUVgy79SDxJu8VVnzAhiWzcmih9UrBUvejuxkbPIAx6ohwHepmh414G0wvAcxtHRaXx4O5cr7g%3D%3D,expires:1766010022446} |
Response 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 | {...} |
Learn more about response formats →
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value | Description |
|---|---|---|---|
| [ ] Array items: | array[5] | 2D array of bingo card numbers and FREE space | |
â”” 0 | number | - | |
â”” 1 | number | - | |
â”” 2 | number | - | |
â”” 3 | number | - | |
â”” 4 | number | - | |
htmlPremium | string | Rendered HTML table of bingo card for display | |
size | number | Dimensions of the bingo card grid | |
freeSpace | boolean | Whether center free space was included | |
totalCells | number | Total number of cells in the card | |
winningPatterns | array | Possible winning patterns for bingo game | |
image | object | - | |
â”” imageNamePremium | string | Unique filename of generated bingo card image | |
â”” format | string | File format extension of image file | |
â”” downloadURLPremium | string | Signed URL to download generated bingo card image | |
â”” expiresPremium | number | Unix timestamp when image download URL expires |
Headers
Only X-API-Key is required. Optional headers include Accept for response format negotiation (JSON, XML, or YAML), User-Agent, and X-Request-ID for request tracing. See all request headers →
GraphQL AccessALPHA
Access Bingo Card Generator through GraphQL to combine it with other API calls in a single request. Query only the bingo card generator data you need with precise field selection, and orchestrate complex data fetching workflows.
Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.
POST https://api.apiverve.com/v1/graphqlquery {
bingocardgenerator(
input: {
size: 5
freeSpace: true
image: true
}
) {
card
html
size
freeSpace
totalCells
winningPatterns
image {
imageName
format
downloadURL
expires
}
}
}Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.
CORS Support
The Bingo Card Generator API accepts cross-origin requests from any origin, so it can be called directly from browser-based applications without a proxy. See CORS support →
Rate Limiting
Bingo Card Generator requests are throttled per minute on the Free plan and unthrottled on paid plans. Exceeding the limit returns 429 Too Many Requests; rate-limit usage is reported in the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset response headers. See per-plan limits and best practices →
Error Codes
The Bingo Card Generator API uses standard HTTP status codes — 200 on success, 400 for invalid parameters, 401 for missing or invalid keys, 403 for insufficient credits, 429 for rate-limit exhaustion, and 500/503 for server-side issues. Each error response includes an X-Request-ID header you can quote when contacting support. See full error handling guide →
SDKs for Bingo Card Generator
Official Bingo Card Generator packages on npm, PyPI, NuGet, and JitPack — plus a Postman collection and an OpenAPI spec. See the SDK guide →
No-Code Integrations
Bingo Card Generator works with Zapier, Make, Pipedream, n8n, and Power Automate using the same API key. See setup guides →
Frequently Asked Questions
How do I get an API key for Bingo Card Generator?
How many credits does Bingo Card Generator cost?
Each successful Bingo Card Generator API call consumes credits based on plan tier. Check the pricing section above for the exact credit cost. Failed requests and errors don't consume credits, so you only pay for successful bingo card generator lookups.
Can I use Bingo Card Generator in production?
The free plan is for testing and development only. For production use of Bingo Card Generator, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.
Can I use Bingo Card Generator from a browser?
What happens if I exceed my Bingo Card Generator credit limit?
When you reach your monthly credit limit, Bingo Card Generator API requests will return an error until you upgrade your plan or wait for the next billing cycle. You'll receive notifications at 80% and 95% usage to give you time to upgrade if needed.








