Full hierarchy
curl --request GET \
--url https://api.managem.co.uk/search/hierarchyimport requests
url = "https://api.managem.co.uk/search/hierarchy"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.managem.co.uk/search/hierarchy', 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.managem.co.uk/search/hierarchy",
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://api.managem.co.uk/search/hierarchy"
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://api.managem.co.uk/search/hierarchy")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.managem.co.uk/search/hierarchy")
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[
{
"facets": {},
"slug": "<string>",
"title": "<string>",
"count": 123,
"cards": 123,
"products": 123,
"hierarchy": [
{
"facets": {},
"slug": "<string>",
"title": "<string>",
"count": 123,
"cards": 123,
"products": 123,
"hierarchy": [
{
"facets": {},
"slug": "<string>",
"title": "<string>",
"count": 123
}
],
"released": "<string>",
"symbol": {
"url": "<string>"
}
}
]
}
]Hierarchy
Full hierarchy
Fetch the browse hierarchy grouped by game, set, and type.
Use this endpoint to build:
- top-level navigation menus
- browse trees
- game/set/type landing pages
Behavior:
- Returns a hierarchical map with slugs and facets for each node.
- Designed to power browse-first experiences before users type a query.
Good to know:
- This response is cached for longer than regular search to keep navigation fast.
GET
/
search
/
hierarchy
Full hierarchy
curl --request GET \
--url https://api.managem.co.uk/search/hierarchyimport requests
url = "https://api.managem.co.uk/search/hierarchy"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.managem.co.uk/search/hierarchy', 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.managem.co.uk/search/hierarchy",
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://api.managem.co.uk/search/hierarchy"
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://api.managem.co.uk/search/hierarchy")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.managem.co.uk/search/hierarchy")
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[
{
"facets": {},
"slug": "<string>",
"title": "<string>",
"count": 123,
"cards": 123,
"products": 123,
"hierarchy": [
{
"facets": {},
"slug": "<string>",
"title": "<string>",
"count": 123,
"cards": 123,
"products": 123,
"hierarchy": [
{
"facets": {},
"slug": "<string>",
"title": "<string>",
"count": 123
}
],
"released": "<string>",
"symbol": {
"url": "<string>"
}
}
]
}
]