Items
curl --request GET \
--url https://cherrytree.soyab.uk/itemsimport requests
url = "https://cherrytree.soyab.uk/items"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://cherrytree.soyab.uk/items', 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/items",
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/items"
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/items")
.asString();require 'uri'
require 'net/http'
url = URI("https://cherrytree.soyab.uk/items")
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,
"imageUrl": "<string>",
"name": "<string>",
"rarity": "<string>",
"value": 123,
"type": "<string>",
"healingAmount": 123,
"farmingLevel": 123,
"attackBonus": 123,
"strengthBonus": 123,
"defenceBonus": 123,
"healthBonus": 123,
"bowDamage": 123,
"bowCrit": 123,
"bowAccuracy": 123,
"bowSpeed": 123,
"description": "<string>",
"tradable": true,
"usedIn": {
"crafting": [
{
"craftingId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"alchemy": [
{
"alchemyId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"cooking": [
{
"cookingId": 123,
"name": "<string>",
"burnt": "<string>",
"levelRequired": 123
}
],
"fletching": [
{
"fletchingId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"farming": [
{
"farmingId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"forestry": [
{
"forestryId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"quests": [
{
"questId": 123,
"questName": "<string>",
"questSeries": "<string>",
"amount": 123
}
],
"basecamps": [
{
"basecampId": 123,
"BaseTowerLevel": "<string>",
"amount": 123
}
],
"blessed": {
"blessedId": 123,
"blessedName": "<string>"
}
},
"limited": 123,
"crafting": {
"name": "<string>",
"category": "<string>",
"craftingLevel": 123,
"craftingExp": 123,
"materials": [
{
"itemId": 123,
"name": "<string>",
"amount": 123
}
]
},
"cooking": {
"name": "<string>",
"burnt": "<string>",
"cookingLevel": 123,
"burntLevel": 123,
"burntChance": 123,
"cookingExp": 123,
"materials": [
{
"itemId": 123,
"name": "<string>"
}
]
},
"farming": {
"name": "<string>",
"farmingLevel": 123,
"farmingExp": 123,
"farmingSeed": "<string>",
"scythePercentage": 123,
"scytheText": "<string>"
},
"mining": {
"name": "<string>",
"miningLevel": 123,
"miningExp": 123,
"gemPercentage": 123,
"gemText": "<string>"
},
"fletching": {
"name": "<string>",
"category": "<string>",
"fletchingLevel": 123,
"fletchingExp": 123,
"materials": [
{
"itemId": 123,
"name": "<string>",
"amount": 123
}
]
},
"forestry": {
"name": "<string>",
"tree": "<string>",
"forestryLevel": 123,
"forestryExp": 123,
"forestryBurnExp": 123
},
"alchemy": {
"alchemyId": 123,
"name": "<string>",
"levelRequired": 123,
"alchemyExpProvided": 123,
"materials": [
{
"itemId": 123,
"itemName": "<string>",
"amount": 123
}
]
},
"blessed": {
"name": "<string>",
"level": "<string>",
"description": "<string>",
"originalCost": 123,
"baseCamp57Cost": 123,
"tikiTheTicketCost": 123,
"requirement": "<string>",
"bothCost": 123
},
"chest": [
{
"name": "<string>",
"min": 123,
"max": 123,
"percentage": 123,
"text": "<string>",
"itemId": 123
}
],
"monsterDrops": [
{
"dropId": 123,
"monsterId": 123,
"monsterName": "<string>",
"minAmount": 123,
"maxAmount": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123,
"rarity": "<string>"
}
],
"fishingDrops": [
{
"dropId": 123,
"locationId": 123,
"locationName": "<string>",
"locationLevel": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123
}
],
"discoveryDrops": [
{
"dropId": 123,
"locationId": 123,
"locationName": "<string>",
"locationLevel": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123
}
],
"theivingDrops": [
{
"dropId": 123,
"locationId": 123,
"locationName": "<string>",
"locationLevel": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123
}
],
"safesDrops": [
{
"safeId": 123,
"safeName": "<string>",
"amount": 123,
"percentage": 123,
"chance": "<string>"
}
],
"explorationDrops": [
{
"explorationId": 123,
"explorationName": "<string>",
"amount": 123,
"percentage": 123,
"chance": "<string>"
}
],
"eventDrops": [
{
"chestName": "<string>",
"chestId": 123,
"amount": 123,
"chancePercentage": 123,
"chanceText": "<string>"
}
],
"foundInChests": [
{
"chestName": "<string>",
"chestId": 123,
"minAmount": 123,
"maxAmount": 123,
"chancePercentage": 123,
"chanceText": "<string>"
}
],
"secrets": {
"name": "<string>",
"chance": 123,
"chanceText": "<string>",
"impactedByWishingWell": true,
"conditions": [
"<string>"
],
"chanceWithMaxWw": 123,
"chanceWithMaxWwText": "<string>",
"chanceWithMaxWwAndBC65": 123,
"chanceWithMaxWwAndBC65Text": "<string>",
"chanceWithMaxWwAndBC65AndRingOfSecrets": 123,
"chanceWithMaxWwAndBC65AndRingOfSecretsText": "<string>",
"chanceWithSoulReaperPotion": 123,
"chanceWithSoulReaperPotionText": "<string>"
}
}
]
}
]API Reference
Items
GET
/
items
Items
curl --request GET \
--url https://cherrytree.soyab.uk/itemsimport requests
url = "https://cherrytree.soyab.uk/items"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://cherrytree.soyab.uk/items', 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/items",
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/items"
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/items")
.asString();require 'uri'
require 'net/http'
url = URI("https://cherrytree.soyab.uk/items")
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,
"imageUrl": "<string>",
"name": "<string>",
"rarity": "<string>",
"value": 123,
"type": "<string>",
"healingAmount": 123,
"farmingLevel": 123,
"attackBonus": 123,
"strengthBonus": 123,
"defenceBonus": 123,
"healthBonus": 123,
"bowDamage": 123,
"bowCrit": 123,
"bowAccuracy": 123,
"bowSpeed": 123,
"description": "<string>",
"tradable": true,
"usedIn": {
"crafting": [
{
"craftingId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"alchemy": [
{
"alchemyId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"cooking": [
{
"cookingId": 123,
"name": "<string>",
"burnt": "<string>",
"levelRequired": 123
}
],
"fletching": [
{
"fletchingId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"farming": [
{
"farmingId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"forestry": [
{
"forestryId": 123,
"name": "<string>",
"levelRequired": 123
}
],
"quests": [
{
"questId": 123,
"questName": "<string>",
"questSeries": "<string>",
"amount": 123
}
],
"basecamps": [
{
"basecampId": 123,
"BaseTowerLevel": "<string>",
"amount": 123
}
],
"blessed": {
"blessedId": 123,
"blessedName": "<string>"
}
},
"limited": 123,
"crafting": {
"name": "<string>",
"category": "<string>",
"craftingLevel": 123,
"craftingExp": 123,
"materials": [
{
"itemId": 123,
"name": "<string>",
"amount": 123
}
]
},
"cooking": {
"name": "<string>",
"burnt": "<string>",
"cookingLevel": 123,
"burntLevel": 123,
"burntChance": 123,
"cookingExp": 123,
"materials": [
{
"itemId": 123,
"name": "<string>"
}
]
},
"farming": {
"name": "<string>",
"farmingLevel": 123,
"farmingExp": 123,
"farmingSeed": "<string>",
"scythePercentage": 123,
"scytheText": "<string>"
},
"mining": {
"name": "<string>",
"miningLevel": 123,
"miningExp": 123,
"gemPercentage": 123,
"gemText": "<string>"
},
"fletching": {
"name": "<string>",
"category": "<string>",
"fletchingLevel": 123,
"fletchingExp": 123,
"materials": [
{
"itemId": 123,
"name": "<string>",
"amount": 123
}
]
},
"forestry": {
"name": "<string>",
"tree": "<string>",
"forestryLevel": 123,
"forestryExp": 123,
"forestryBurnExp": 123
},
"alchemy": {
"alchemyId": 123,
"name": "<string>",
"levelRequired": 123,
"alchemyExpProvided": 123,
"materials": [
{
"itemId": 123,
"itemName": "<string>",
"amount": 123
}
]
},
"blessed": {
"name": "<string>",
"level": "<string>",
"description": "<string>",
"originalCost": 123,
"baseCamp57Cost": 123,
"tikiTheTicketCost": 123,
"requirement": "<string>",
"bothCost": 123
},
"chest": [
{
"name": "<string>",
"min": 123,
"max": 123,
"percentage": 123,
"text": "<string>",
"itemId": 123
}
],
"monsterDrops": [
{
"dropId": 123,
"monsterId": 123,
"monsterName": "<string>",
"minAmount": 123,
"maxAmount": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123,
"rarity": "<string>"
}
],
"fishingDrops": [
{
"dropId": 123,
"locationId": 123,
"locationName": "<string>",
"locationLevel": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123
}
],
"discoveryDrops": [
{
"dropId": 123,
"locationId": 123,
"locationName": "<string>",
"locationLevel": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123
}
],
"theivingDrops": [
{
"dropId": 123,
"locationId": 123,
"locationName": "<string>",
"locationLevel": 123,
"baseChance": 123,
"luckChance": 123,
"extremeLuckChance": 123
}
],
"safesDrops": [
{
"safeId": 123,
"safeName": "<string>",
"amount": 123,
"percentage": 123,
"chance": "<string>"
}
],
"explorationDrops": [
{
"explorationId": 123,
"explorationName": "<string>",
"amount": 123,
"percentage": 123,
"chance": "<string>"
}
],
"eventDrops": [
{
"chestName": "<string>",
"chestId": 123,
"amount": 123,
"chancePercentage": 123,
"chanceText": "<string>"
}
],
"foundInChests": [
{
"chestName": "<string>",
"chestId": 123,
"minAmount": 123,
"maxAmount": 123,
"chancePercentage": 123,
"chanceText": "<string>"
}
],
"secrets": {
"name": "<string>",
"chance": 123,
"chanceText": "<string>",
"impactedByWishingWell": true,
"conditions": [
"<string>"
],
"chanceWithMaxWw": 123,
"chanceWithMaxWwText": "<string>",
"chanceWithMaxWwAndBC65": 123,
"chanceWithMaxWwAndBC65Text": "<string>",
"chanceWithMaxWwAndBC65AndRingOfSecrets": 123,
"chanceWithMaxWwAndBC65AndRingOfSecretsText": "<string>",
"chanceWithSoulReaperPotion": 123,
"chanceWithSoulReaperPotionText": "<string>"
}
}
]
}
]Was this page helpful?