Amazon Pinpoint SMS and Voice Service
amazonaws · Cloud
Pinpoint SMS and Voice Messaging public facing APIs
Authentication
Sample Requests
List all of the configuration sets associated with your Amazon Pinpoint account in the current region.
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));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.
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));Create a new configuration set. After you create the configuration set, you can add one or more event destinations to it.
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
- 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