Find an API

Search public APIs with auth details & Postman guides

← All APIs

AWS IoT Greengrass V2

amazonaws · Cloud

Cloud No Auth Free & Open cloud Sandbox

IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of information, react autonomously to local events, and communicate securely with each other on local networks. Local devices can also communicate securely with Amazon Web Services IoT Core and export IoT data to the Amazon Web Services Cloud. IoT Greengrass developers can use Lambda functions and components

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET ListDeployments

Retrieves a paginated list of deployments.

https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/deployments?nextToken=example&targetArn=example&maxResults=1&historyFilter=ALL&parentTargetArn=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/deployments?nextToken=example&targetArn=example&maxResults=1&historyFilter=ALL&parentTargetArn=example"
import requests
params = {
    "nextToken": "example",
    "targetArn": "example",
    "maxResults": "1",
    "historyFilter": "ALL",
    "parentTargetArn": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/deployments",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/deployments');
url.searchParams.set('nextToken', 'example');
url.searchParams.set('targetArn', 'example');
url.searchParams.set('maxResults', '1');
url.searchParams.set('historyFilter', 'ALL');
url.searchParams.set('parentTargetArn', '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/greengrassv2/2020-11-30/greengrass/v2/deployments")
	q := baseURL.Query()
	q.Set("nextToken", "example")
	q.Set("targetArn", "example")
	q.Set("maxResults", "1")
	q.Set("historyFilter", "ALL")
	q.Set("parentTargetArn", "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/greengrassv2/2020-11-30/greengrass/v2/deployments")
uri.query = URI.encode_www_form({
  "nextToken" => "example",
  "targetArn" => "example",
  "maxResults" => "1",
  "historyFilter" => "ALL",
  "parentTargetArn" => "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/greengrassv2/2020-11-30/greengrass/v2/deployments?" . http_build_query([
    "nextToken" => "example",
    "targetArn" => "example",
    "maxResults" => "1",
    "historyFilter" => "ALL",
    "parentTargetArn" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET ListComponents

Retrieves a paginated list of component summaries. This list includes components that you have permission to view.

https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/components?scope=PRIVATE&nextToken=example&maxResults=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/components?scope=PRIVATE&nextToken=example&maxResults=1"
import requests
params = {
    "scope": "PRIVATE",
    "nextToken": "example",
    "maxResults": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/components",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/components');
url.searchParams.set('scope', 'PRIVATE');
url.searchParams.set('nextToken', 'example');
url.searchParams.set('maxResults', '1');

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/greengrassv2/2020-11-30/greengrass/v2/components")
	q := baseURL.Query()
	q.Set("scope", "PRIVATE")
	q.Set("nextToken", "example")
	q.Set("maxResults", "1")
	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/greengrassv2/2020-11-30/greengrass/v2/components")
uri.query = URI.encode_www_form({
  "scope" => "PRIVATE",
  "nextToken" => "example",
  "maxResults" => "1"
})

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/greengrassv2/2020-11-30/greengrass/v2/components?" . http_build_query([
    "scope" => "PRIVATE",
    "nextToken" => "example",
    "maxResults" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET ListCoreDevices

Retrieves a paginated list of Greengrass core devices. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud,

https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/coreDevices?status=HEALTHY&nextToken=example&maxResults=1&thingGroupArn=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/coreDevices?status=HEALTHY&nextToken=example&maxResults=1&thingGroupArn=example"
import requests
params = {
    "status": "HEALTHY",
    "nextToken": "example",
    "maxResults": "1",
    "thingGroupArn": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/coreDevices",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/greengrass/v2/coreDevices');
url.searchParams.set('status', 'HEALTHY');
url.searchParams.set('nextToken', 'example');
url.searchParams.set('maxResults', '1');
url.searchParams.set('thingGroupArn', '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/greengrassv2/2020-11-30/greengrass/v2/coreDevices")
	q := baseURL.Query()
	q.Set("status", "HEALTHY")
	q.Set("nextToken", "example")
	q.Set("maxResults", "1")
	q.Set("thingGroupArn", "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/greengrassv2/2020-11-30/greengrass/v2/coreDevices")
uri.query = URI.encode_www_form({
  "status" => "HEALTHY",
  "nextToken" => "example",
  "maxResults" => "1",
  "thingGroupArn" => "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/greengrassv2/2020-11-30/greengrass/v2/coreDevices?" . http_build_query([
    "status" => "HEALTHY",
    "nextToken" => "example",
    "maxResults" => "1",
    "thingGroupArn" => "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

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

What can you build with AWS IoT Greengrass V2?

AWS IoT Greengrass V2 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 IoT Greengrass V2 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 ↗