Find an API

Search public APIs with auth details & Postman guides

← All APIs

Amazon Route 53 Domains

amazonaws · Cloud

Cloud No Auth Free & Open cloud Sandbox

Amazon Route 53 API actions let you register domain names and perform related operations.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST ListDomains

This operation returns all the domain names registered with Amazon Route 53 for the current Amazon Web Services account if no filtering conditions are used.

https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains?Marker=example&MaxItems=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target Route53Domains_v20140515.ListDomains
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains?Marker=example&MaxItems=example" \
  -H "X-Amz-Target: Route53Domains_v20140515.ListDomains"
import requests
params = {
    "Marker": "example",
    "MaxItems": "example"
}
headers = {
    "X-Amz-Target": "Route53Domains_v20140515.ListDomains"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains');
url.searchParams.set('Marker', 'example');
url.searchParams.set('MaxItems', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'Route53Domains_v20140515.ListDomains'
  },
}); 
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/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains")
	q := baseURL.Query()
	q.Set("Marker", "example")
	q.Set("MaxItems", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "Route53Domains_v20140515.ListDomains")

	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/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains")
uri.query = URI.encode_www_form({
  "Marker" => "example",
  "MaxItems" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "Route53Domains_v20140515.ListDomains"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListDomains?" . http_build_query([
    "Marker" => "example",
    "MaxItems" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: Route53Domains_v20140515.ListDomains"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST ListOperations

Returns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account. This command runs only in the us-east-1 Region.

https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations?Marker=example&MaxItems=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target Route53Domains_v20140515.ListOperations
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations?Marker=example&MaxItems=example" \
  -H "X-Amz-Target: Route53Domains_v20140515.ListOperations"
import requests
params = {
    "Marker": "example",
    "MaxItems": "example"
}
headers = {
    "X-Amz-Target": "Route53Domains_v20140515.ListOperations"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations');
url.searchParams.set('Marker', 'example');
url.searchParams.set('MaxItems', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'Route53Domains_v20140515.ListOperations'
  },
}); 
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/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations")
	q := baseURL.Query()
	q.Set("Marker", "example")
	q.Set("MaxItems", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "Route53Domains_v20140515.ListOperations")

	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/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations")
uri.query = URI.encode_www_form({
  "Marker" => "example",
  "MaxItems" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "Route53Domains_v20140515.ListOperations"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListOperations?" . http_build_query([
    "Marker" => "example",
    "MaxItems" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: Route53Domains_v20140515.ListOperations"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST ListPrices

Lists the following prices for either all the TLDs supported by Route 53, or the specified TLD: Registration Transfer Owner change Domain renewal Domain restoration

https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices?Marker=example&MaxItems=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target Route53Domains_v20140515.ListPrices
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices?Marker=example&MaxItems=example" \
  -H "X-Amz-Target: Route53Domains_v20140515.ListPrices"
import requests
params = {
    "Marker": "example",
    "MaxItems": "example"
}
headers = {
    "X-Amz-Target": "Route53Domains_v20140515.ListPrices"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices');
url.searchParams.set('Marker', 'example');
url.searchParams.set('MaxItems', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'Route53Domains_v20140515.ListPrices'
  },
}); 
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/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices")
	q := baseURL.Query()
	q.Set("Marker", "example")
	q.Set("MaxItems", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "Route53Domains_v20140515.ListPrices")

	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/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices")
uri.query = URI.encode_www_form({
  "Marker" => "example",
  "MaxItems" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "Route53Domains_v20140515.ListPrices"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/#X-Amz-Target=Route53Domains_v20140515.ListPrices?" . http_build_query([
    "Marker" => "example",
    "MaxItems" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: Route53Domains_v20140515.ListPrices"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Amazon Route 53 Domains?

Amazon Route 53 Domains is a Cloud API. Developers commonly use cloud APIs for:

  • provisioning and managing cloud infrastructure
  • automating deployments and container orchestration
  • monitoring uptime and performance metrics
  • managing storage buckets and databases
  • setting up auto-scaling and load balancing

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Amazon Route 53 Domains is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗