Find an API

Search public APIs with auth details & Postman guides

← All APIs

AWS WAF Regional

amazonaws · Cloud

Cloud No Auth Free & Open cloud

This is AWS WAF Classic Regional documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF , use the AWS WAFV2 API and see the AWS WAF Developer Guide . With the latest version, AWS WAF has a single set of endpoints for regional and gl

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST AssociateWebACL

This is AWS WAF Classic Regional documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF , use the AWS WAFV2 API and

https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSWAF_Regional_20161128.AssociateWebACL
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL" \
  -H "X-Amz-Target: AWSWAF_Regional_20161128.AssociateWebACL"
import requests
headers = {
    "X-Amz-Target": "AWSWAF_Regional_20161128.AssociateWebACL"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSWAF_Regional_20161128.AssociateWebACL'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSWAF_Regional_20161128.AssociateWebACL")

	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/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL")

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.AssociateWebACL";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSWAF_Regional_20161128.AssociateWebACL"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST CreateByteMatchSet

This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF , use the AWS WAFV2 API and see the <

https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSWAF_Regional_20161128.CreateByteMatchSet
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet" \
  -H "X-Amz-Target: AWSWAF_Regional_20161128.CreateByteMatchSet"
import requests
headers = {
    "X-Amz-Target": "AWSWAF_Regional_20161128.CreateByteMatchSet"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSWAF_Regional_20161128.CreateByteMatchSet'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSWAF_Regional_20161128.CreateByteMatchSet")

	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/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet")

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateByteMatchSet";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSWAF_Regional_20161128.CreateByteMatchSet"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST CreateGeoMatchSet

This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF , use the AWS WAFV2 API and see the <

https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSWAF_Regional_20161128.CreateGeoMatchSet
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet" \
  -H "X-Amz-Target: AWSWAF_Regional_20161128.CreateGeoMatchSet"
import requests
headers = {
    "X-Amz-Target": "AWSWAF_Regional_20161128.CreateGeoMatchSet"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSWAF_Regional_20161128.CreateGeoMatchSet'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSWAF_Regional_20161128.CreateGeoMatchSet")

	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/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet")

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/#X-Amz-Target=AWSWAF_Regional_20161128.CreateGeoMatchSet";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSWAF_Regional_20161128.CreateGeoMatchSet"
    ]),
]];
$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 AWS WAF Regional?

AWS WAF Regional 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. AWS WAF Regional 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?

Open documentation ↗