Programmatic access to domain search, registration, DNS, and auctions.
All authenticated endpoints require a Bearer token in the Authorization header.
Generate API keys from your Account Settings.
https://bigfame.ai/api/domains/search?query={domain}Search for available domains by keyword or exact match.
curl "https://bigfame.ai/api/domains/search?query=example"
/api/domains/purchaseRegister/purchase an available domain.
curl -X POST https://bigfame.ai/api/domains/purchase \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"domain":"example.com","years":1}'/api/domains/manageList all domains in your account.
curl -H "Authorization: Bearer YOUR_KEY" \ https://bigfame.ai/api/domains/manage
/api/domains/dns?domain={domain}Get DNS records for a domain.
curl -H "Authorization: Bearer YOUR_KEY" \ "https://bigfame.ai/api/domains/dns?domain=example.com"
/api/domains/dnsUpdate DNS records for a domain.
curl -X PUT https://bigfame.ai/api/domains/dns \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"domain":"example.com","records":[{"type":"A","name":"@","value":"1.2.3.4"}]}'/api/domains/auctionsList active domain auctions with optional search/sort/filter.
curl "https://bigfame.ai/api/domains/auctions?sort=ending_soon&tld=.com"
/api/domains/auctionsCreate a new domain auction listing.
curl -X POST https://bigfame.ai/api/domains/auctions \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"domain":"premium.com","startingPrice":100,"durationDays":7}'/api/domains/auctions/{id}/bidPlace a bid on an auction.
curl -X POST https://bigfame.ai/api/domains/auctions/abc123/bid \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"amount":500,"bidderId":"user123"}'API requests are limited to 100 requests/minute per API key. Search endpoints are limited to 30 requests/minute. Exceeding these limits returns a 429 status code.