Secret Rares
curl --request GET \
--url https://cherrytree.soyab.uk/secretraresimport requests
url = "https://cherrytree.soyab.uk/secretrares"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://cherrytree.soyab.uk/secretrares', 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://cherrytree.soyab.uk/secretrares",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://cherrytree.soyab.uk/secretrares"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://cherrytree.soyab.uk/secretrares")
.asString();require 'uri'
require 'net/http'
url = URI("https://cherrytree.soyab.uk/secretrares")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"total": 123,
"results": [
{
"id": 123,
"itemName": "<string>",
"secretDrops": [
{
"chance": 123,
"chanceText": "<string>",
"impactedByWishingWell": true,
"conditions": [
"<string>"
],
"chanceWithMaxWw": 123,
"chanceWithMaxWwText": "<string>",
"chanceWithMaxWwAndBC65": 123,
"chanceWithMaxWwAndBC65Text": "<string>",
"chanceWithMaxWwAndBC65AndRingOfSecrets": 123,
"chanceWithMaxWwAndBC65AndRingOfSecretsText": "<string>",
"chanceWithSoulReaperPotion": 123,
"chanceWithSoulReaperPotionText": "<string>"
}
],
"itemId": 123
}
]
}
]API Reference
Secret Rares
GET
/
secretrares
Secret Rares
curl --request GET \
--url https://cherrytree.soyab.uk/secretraresimport requests
url = "https://cherrytree.soyab.uk/secretrares"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://cherrytree.soyab.uk/secretrares', 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://cherrytree.soyab.uk/secretrares",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://cherrytree.soyab.uk/secretrares"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://cherrytree.soyab.uk/secretrares")
.asString();require 'uri'
require 'net/http'
url = URI("https://cherrytree.soyab.uk/secretrares")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"total": 123,
"results": [
{
"id": 123,
"itemName": "<string>",
"secretDrops": [
{
"chance": 123,
"chanceText": "<string>",
"impactedByWishingWell": true,
"conditions": [
"<string>"
],
"chanceWithMaxWw": 123,
"chanceWithMaxWwText": "<string>",
"chanceWithMaxWwAndBC65": 123,
"chanceWithMaxWwAndBC65Text": "<string>",
"chanceWithMaxWwAndBC65AndRingOfSecrets": 123,
"chanceWithMaxWwAndBC65AndRingOfSecretsText": "<string>",
"chanceWithSoulReaperPotion": 123,
"chanceWithSoulReaperPotionText": "<string>"
}
],
"itemId": 123
}
]
}
]Was this page helpful?