Fake Passport Stamp
The Fake Passport Stamp API returns one passport entry stamp per call from an invented country (Volyndia, Pretzelsburg, etc.). Includes entry port, date, visa type, visa duration, purpose, stamp description, customs note, and exit-required-by date.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|
Examples
curl "https://api.stupidapis.com/fake-passport-stamp/stamp"
import requests
response = requests.get("https://api.stupidapis.com/fake-passport-stamp/stamp")
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-passport-stamp/stamp");
const data = await response.json();
Response Schema
| Field | Type | Description |
|---|---|---|
country |
string |
The invented country |
entry_port |
string |
Port of entry |
date |
string |
Entry date |
visa_type |
string |
Visa type code |
visa_duration_days |
number |
Days of stay permitted |
purpose |
string |
Stated purpose |
stamp_description |
string |
Visual of the stamp |
customs_note |
string |
Customs note |
exit_required_by |
string |
Exit deadline |
Example Response
{
"country": "Volyndia",
"entry_port": "Port of Marled",
"date": "2026-04-12",
"visa_type": "B-2 (Tourist)",
"visa_duration_days": 47,
"purpose": "Tourism",
"stamp_description": "circular, blue ink, partially smudged",
"customs_note": "Bearer is permitted to remain for 30 days. The 30 days are at the border officer's discretion.",
"exit_required_by": "2026-05-29"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/fake-passport-stamp/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.