Amazon Pinpoint
amazonaws · Cloud
Doc Engage API - Amazon Pinpoint API
Authentication
Sample Requests
Retrieves information about all the applications that are associated with your Amazon Pinpoint account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/apps?token=YOUR_TOKEN&page-size=10"
import requests
params = {
"token": "YOUR_TOKEN",
"page-size": "10"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/apps",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/apps');
url.searchParams.set('token', 'YOUR_TOKEN');
url.searchParams.set('page-size', '10');
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/pinpoint/2016-12-01/v1/apps")
q := baseURL.Query()
q.Set("token", "YOUR_TOKEN")
q.Set("page-size", "10")
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/pinpoint/2016-12-01/v1/apps")
uri.query = URI.encode_www_form({
"token" => "YOUR_TOKEN",
"page-size" => "10"
})
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/pinpoint/2016-12-01/v1/apps?" . http_build_query([
"token" => "YOUR_TOKEN",
"page-size" => "10"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieves information about all the recommender model configurations that are associated with your Amazon Pinpoint account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/recommenders?token=YOUR_TOKEN&page-size=10"
import requests
params = {
"token": "YOUR_TOKEN",
"page-size": "10"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/recommenders",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/recommenders');
url.searchParams.set('token', 'YOUR_TOKEN');
url.searchParams.set('page-size', '10');
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/pinpoint/2016-12-01/v1/recommenders")
q := baseURL.Query()
q.Set("token", "YOUR_TOKEN")
q.Set("page-size", "10")
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/pinpoint/2016-12-01/v1/recommenders")
uri.query = URI.encode_www_form({
"token" => "YOUR_TOKEN",
"page-size" => "10"
})
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/pinpoint/2016-12-01/v1/recommenders?" . http_build_query([
"token" => "YOUR_TOKEN",
"page-size" => "10"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieves information about all the message templates that are associated with your Amazon Pinpoint account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/templates?prefix=example&page-size=10&next-token=example&template-type=example"
import requests
params = {
"prefix": "example",
"page-size": "10",
"next-token": "example",
"template-type": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/templates",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/v1/templates');
url.searchParams.set('prefix', 'example');
url.searchParams.set('page-size', '10');
url.searchParams.set('next-token', 'example');
url.searchParams.set('template-type', '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/pinpoint/2016-12-01/v1/templates")
q := baseURL.Query()
q.Set("prefix", "example")
q.Set("page-size", "10")
q.Set("next-token", "example")
q.Set("template-type", "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/pinpoint/2016-12-01/v1/templates")
uri.query = URI.encode_www_form({
"prefix" => "example",
"page-size" => "10",
"next-token" => "example",
"template-type" => "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/pinpoint/2016-12-01/v1/templates?" . http_build_query([
"prefix" => "example",
"page-size" => "10",
"next-token" => "example",
"template-type" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$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?
Amazon Pinpoint 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 is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide