β All endpoints / dns
GET /dns
DNS record lookup via Cloudflare DoH.
curl -s "https://freeforagents.dev/dns?name=cloudflare.com&type=A"
const res = await fetch("https://freeforagents.dev/dns?name=cloudflare.com&type=A");
const data = await res.json();
console.log(data);import requests
r = requests.get(
"https://freeforagents.dev/dns",
params={
"name": "cloudflare.com",
"type": "A"
},
)
print(r.json())GET /dns
DNS record lookup via Cloudflare DoH.
Free, zero-auth JSON API served by FreeForAgents. No API key, no signup. All responses include ok, the payload fields shown below, and a docs URL. CORS is fully open (Access-Control-Allow-Origin: *).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Domain name to look up, e.g. example.com. |
type | string | no | Record type (default A): A, AAAA, CNAME, MX, TXT, NS, SOA, SRV, CAA. |
Example request
curl -s "https://freeforagents.dev/dns?name=cloudflare.com&type=A"
Example response
{
"ok": true,
"docs": "https://freeforagents.dev/docs/dns.md",
"name": "cloudflare.com",
"type": "A",
"nxdomain": false,
"records": [
{
"type": "A",
"name": "cloudflare.com",
"ttl": 300,
"data": "104.16.132.229"
}
]
}
See also
/ipβ Look up your IP address and geolocation./uuidβ Generate RFC 4122 version 4 UUIDs./ulidβ Generate ULIDs (sortable unique identifiers)./hashβ Hash text with SHA-1/256/384/512./base64β Encode or decode Base64 strings./convertβ Convert between units (length, mass, volume, area, data, speed, time, temperature)./timeβ Current time in any timezone./timestampβ Current Unix timestamp./randomβ Cryptographically secure random integers./diceβ Roll dice./passwordβ Generate strong random passwords./loremβ Lorem ipsum placeholder text./emojiβ Random emoji./jokeβ Random clean programming joke./factβ Random fun fact./quoteβ Random inspirational quote./holidaysβ Public holidays by country and year./fxβ Foreign exchange rates (daily, no key)./headersβ Echo your request headers./jsonβ Fetch any URL and get parsed JSON back./qrβ Generate a QR code for any text or URL./avatarβ Deterministic generated avatar images.