Get s15x staff
curl --request GET \
--url https://api.s15x.dev/s15x/staff \
--header 'API-Authorization: <api-key>'import requests
url = "https://api.s15x.dev/s15x/staff"
headers = {"API-Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Authorization': '<api-key>'}};
fetch('https://api.s15x.dev/s15x/staff', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.s15x.dev/s15x/staff",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.s15x.dev/s15x/staff"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.s15x.dev/s15x/staff")
.header("API-Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.s15x.dev/s15x/staff")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"RobloxId": {
"Text": "<string>"
}
}Public
Staff
GET
/
s15x
/
staff
Get s15x staff
curl --request GET \
--url https://api.s15x.dev/s15x/staff \
--header 'API-Authorization: <api-key>'import requests
url = "https://api.s15x.dev/s15x/staff"
headers = {"API-Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Authorization': '<api-key>'}};
fetch('https://api.s15x.dev/s15x/staff', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.s15x.dev/s15x/staff",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.s15x.dev/s15x/staff"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.s15x.dev/s15x/staff")
.header("API-Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.s15x.dev/s15x/staff")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"RobloxId": {
"Text": "<string>"
}
}{
"500595751": {
"Text": "s15x Founder"
},
"2371800278": {
"Text": "s15x Staff"
},
"2428107211": {
"Text": "s15x Staff"
},
"5502858463": {
"Text": "Engineer"
}
}
⌘I