Find an API

Search public APIs with auth details & Postman guides

← All APIs

Amazon Pinpoint SMS and Voice Service

amazonaws · Cloud

Cloud No Auth Free & Open cloud Sandbox

Pinpoint SMS and Voice Messaging public facing APIs

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET ListConfigurationSets

List all of the configuration sets associated with your Amazon Pinpoint account in the current region.

https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets?PageSize=example&NextToken=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets?PageSize=example&NextToken=example"
import requests
params = {
    "PageSize": "example",
    "NextToken": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets');
url.searchParams.set('PageSize', 'example');
url.searchParams.set('NextToken', 'example');

const response = await fetch(url); 
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/sms-voice/2018-09-05/v1/sms-voice/configuration-sets")
	q := baseURL.Query()
	q.Set("PageSize", "example")
	q.Set("NextToken", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	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/sms-voice/2018-09-05/v1/sms-voice/configuration-sets")
uri.query = URI.encode_www_form({
  "PageSize" => "example",
  "NextToken" => "example"
})

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

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets?" . http_build_query([
    "PageSize" => "example",
    "NextToken" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET GetConfigurationSetEventDestinations

Obtain information about an event destination, including the types of events it reports, the Amazon Resource Name (ARN) of the destination, and the name of the event destination.

https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations';

const response = await fetch(url); 
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/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations"
	req, _ := http.NewRequest("GET", targetURL, nil)

	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/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations")

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

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets/{ConfigurationSetName}/event-destinations";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST CreateConfigurationSet

Create a new configuration set. After you create the configuration set, you can add one or more event destinations to it.

https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets"
import requests
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets';

const response = await fetch(url, {
  method: 'POST',
}); 
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/sms-voice/2018-09-05/v1/sms-voice/configuration-sets"
	req, _ := http.NewRequest("POST", targetURL, nil)

	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/sms-voice/2018-09-05/v1/sms-voice/configuration-sets")

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

req = Net::HTTP::Post.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/v1/sms-voice/configuration-sets";
$opts = ["http" => [
    "method" => "POST",
]];
$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 Pinpoint SMS and Voice Service?

Amazon Pinpoint SMS and Voice Service 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 Pinpoint SMS and Voice Service is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗