Fun Generators API
fungenerators · Company
Fungenerators API gives access to the full set of generators available at fungenerators.com so that you can integrate them in your workflow or an app. [Click here to get details and subscribe](http://fungenerators.com/api) . Here are the individual API links: ## QR Code API ## Generate QR Code images for text, url, email , business cards etc. You can decode QR Code images and get the contents as well. The best and complete QR Code API on the cloud. [Click here to subscribe](http://fungenera
Authentication
Sample Requests
Get a QR Code image for a business card aka VCARD
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/business_card?zip=10001&city=London&email=test%40example.com&state=example&format=json&company=example&country=US&street1=example&street2=example&lastname=example&firstname=example&middlename=example&phone_cell=example&phone_home=example&phone_work=example"
import requests
params = {
"zip": "10001",
"city": "London",
"email": "[email protected]",
"state": "example",
"format": "json",
"company": "example",
"country": "US",
"street1": "example",
"street2": "example",
"lastname": "example",
"firstname": "example",
"middlename": "example",
"phone_cell": "example",
"phone_home": "example",
"phone_work": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/business_card",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/business_card');
url.searchParams.set('zip', '10001');
url.searchParams.set('city', 'London');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('state', 'example');
url.searchParams.set('format', 'json');
url.searchParams.set('company', 'example');
url.searchParams.set('country', 'US');
url.searchParams.set('street1', 'example');
url.searchParams.set('street2', 'example');
url.searchParams.set('lastname', 'example');
url.searchParams.set('firstname', 'example');
url.searchParams.set('middlename', 'example');
url.searchParams.set('phone_cell', 'example');
url.searchParams.set('phone_home', 'example');
url.searchParams.set('phone_work', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/business_card")
q := baseURL.Query()
q.Set("zip", "10001")
q.Set("city", "London")
q.Set("email", "[email protected]")
q.Set("state", "example")
q.Set("format", "json")
q.Set("company", "example")
q.Set("country", "US")
q.Set("street1", "example")
q.Set("street2", "example")
q.Set("lastname", "example")
q.Set("firstname", "example")
q.Set("middlename", "example")
q.Set("phone_cell", "example")
q.Set("phone_home", "example")
q.Set("phone_work", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/business_card")
uri.query = URI.encode_www_form({
"zip" => "10001",
"city" => "London",
"email" => "[email protected]",
"state" => "example",
"format" => "json",
"company" => "example",
"country" => "US",
"street1" => "example",
"street2" => "example",
"lastname" => "example",
"firstname" => "example",
"middlename" => "example",
"phone_cell" => "example",
"phone_home" => "example",
"phone_work" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/business_card?" . http_build_query([
"zip" => "10001",
"city" => "London",
"email" => "[email protected]",
"state" => "example",
"format" => "json",
"company" => "example",
"country" => "US",
"street1" => "example",
"street2" => "example",
"lastname" => "example",
"firstname" => "example",
"middlename" => "example",
"phone_cell" => "example",
"phone_home" => "example",
"phone_work" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get a QR Code image for an email
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/email?body=example&email=test%40example.com&format=json&subject=example"
import requests
params = {
"body": "example",
"email": "[email protected]",
"format": "json",
"subject": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/email",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/email');
url.searchParams.set('body', 'example');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('format', 'json');
url.searchParams.set('subject', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/email")
q := baseURL.Query()
q.Set("body", "example")
q.Set("email", "[email protected]")
q.Set("format", "json")
q.Set("subject", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/email")
uri.query = URI.encode_www_form({
"body" => "example",
"email" => "[email protected]",
"format" => "json",
"subject" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/email?" . http_build_query([
"body" => "example",
"email" => "[email protected]",
"format" => "json",
"subject" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get a QR Code image for a phone number
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/phone?format=json&number=example"
import requests
params = {
"format": "json",
"number": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/phone",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/phone');
url.searchParams.set('format', 'json');
url.searchParams.set('number', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/phone")
q := baseURL.Query()
q.Set("format", "json")
q.Set("number", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/phone")
uri.query = URI.encode_www_form({
"format" => "json",
"number" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/fungenerators.com/qrcode/1.5/qrcode/phone?" . http_build_query([
"format" => "json",
"number" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Fun Generators API?
Fun Generators API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Fun Generators API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?