Find an API

Search public APIs with auth details & Postman guides

← All APIs

AWS Elemental MediaStore Data Plane

amazonaws · Cloud

Cloud No Auth Free & Open cloud

An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET ListItems

Provides a list of metadata entries about folders and objects in the specified folder.

https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01?Path=example&NextToken=example&MaxResults=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/?Path=example&NextToken=example&MaxResults=1"
import requests
params = {
    "Path": "example",
    "NextToken": "example",
    "MaxResults": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/');
url.searchParams.set('Path', 'example');
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/mediastore-data/2017-09-01/")
	q := baseURL.Query()
	q.Set("Path", "example")
	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/mediastore-data/2017-09-01/")
uri.query = URI.encode_www_form({
  "Path" => "example",
  "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/mediastore-data/2017-09-01/?" . http_build_query([
    "Path" => "example",
    "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 GetObject

Downloads the object at the specified path. If the object’s upload availability is set to streaming , AWS Elemental MediaStore downloads the object even if it’s still uploading the object.

https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}';

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/mediastore-data/2017-09-01/{Path}"
	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/mediastore-data/2017-09-01/{Path}")

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/mediastore-data/2017-09-01/{Path}";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
PUT PutObject

Uploads an object to the specified path. Object sizes are limited to 25 MB for standard upload availability and 10 MB for streaming upload availability.

https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}

Hover any highlighted part to learn what it does

curl -X PUT "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}"
import requests
response = requests.put(
    "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}';

const response = await fetch(url, {
  method: 'PUT',
}); 
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/mediastore-data/2017-09-01/{Path}"
	req, _ := http.NewRequest("PUT", 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/mediastore-data/2017-09-01/{Path}")

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/{Path}";
$opts = ["http" => [
    "method" => "PUT",
]];
$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 Elemental MediaStore Data Plane?

AWS Elemental MediaStore Data Plane 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 Elemental MediaStore Data Plane is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗