Remote Settings PROD
mozilla · Cloud
Remote Settings PROD API
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
get_buckets
https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/buckets?id=1&_to=1&_sort=example&_limit=1&_since=1&_token=example&_before=1&_fields=example&last_modified=1
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/buckets?id=1&_to=1&_sort=example&_limit=1&_since=1&_token=example&_before=1&_fields=example&last_modified=1"
import requests
params = {
"id": "1",
"_to": "1",
"_sort": "example",
"_limit": "1",
"_since": "1",
"_token": "example",
"_before": "1",
"_fields": "example",
"last_modified": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/buckets",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/buckets');
url.searchParams.set('id', '1');
url.searchParams.set('_to', '1');
url.searchParams.set('_sort', 'example');
url.searchParams.set('_limit', '1');
url.searchParams.set('_since', '1');
url.searchParams.set('_token', 'example');
url.searchParams.set('_before', '1');
url.searchParams.set('_fields', 'example');
url.searchParams.set('last_modified', '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/mozilla.com/kinto/1.22/buckets")
q := baseURL.Query()
q.Set("id", "1")
q.Set("_to", "1")
q.Set("_sort", "example")
q.Set("_limit", "1")
q.Set("_since", "1")
q.Set("_token", "example")
q.Set("_before", "1")
q.Set("_fields", "example")
q.Set("last_modified", "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/mozilla.com/kinto/1.22/buckets")
uri.query = URI.encode_www_form({
"id" => "1",
"_to" => "1",
"_sort" => "example",
"_limit" => "1",
"_since" => "1",
"_token" => "example",
"_before" => "1",
"_fields" => "example",
"last_modified" => "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/mozilla.com/kinto/1.22/buckets?" . http_build_query([
"id" => "1",
"_to" => "1",
"_sort" => "example",
"_limit" => "1",
"_since" => "1",
"_token" => "example",
"_before" => "1",
"_fields" => "example",
"last_modified" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
server_info
https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/'; 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/mozilla.com/kinto/1.22/"
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/mozilla.com/kinto/1.22/")
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/mozilla.com/kinto/1.22/";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
get_openapi_spec
https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/__api__
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/__api__"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/__api__",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/mozilla.com/kinto/1.22/__api__'; 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/mozilla.com/kinto/1.22/__api__"
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/mozilla.com/kinto/1.22/__api__")
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/mozilla.com/kinto/1.22/__api__";
$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 Remote Settings PROD?
Remote Settings PROD 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. Remote Settings PROD is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide