Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Search
  • Users
  • APIs
    • Basket
      • List items in the basket
      • Add an item to the basket
      • Update an item in the basket
      • Remove an item from the basket
      • Retrieve the basket summary
      • Retrieve the basket information, fees & delivery costs
      • Create a checkout session for the basket
    • Conversations
      • List conversations
      • Create conversation
      • Count unread messages
      • List messages
      • Send a message
    • Search
      • Search using full-text and facets
        POST
      • Lookup usernames
        POST
      • Retrieve an item by its URN or slug
        GET
      • Retrieve multiple items by URN
        POST
      • Retrieve a faceted hierarchy of items
        GET
      • Retrieve search results for a specific game
        POST
      • Retrieve search results for a specific set
        POST
      • Retrieve search results for a specific type
        POST
    • Sellers
      • Create listing
      • Search listings
      • Get listing
      • Update listing
      • Delete listing
      • Create image upload URL
      • Get delivery configuration
      • Upsert delivery configuration
      • List orders
      • Get order
      • Create seller account
      • Get seller account
      • Get seller status
      • Get dashboard link
      • Get seller balance
      • Withdraw funds
      • List payouts
      • List transfers
    • Seller Listings
      • Search listings
      • Search a seller's listings
      • Search listings for a specific item
      • Retrieve historical prices for an item
    • Users
      • Find/Lookup addresses
      • Retrieve full address details
      • Store a new Address
      • List all Addresses
      • Delete an Address
      • Get user account information
      • Update user password
      • Update user profile
      • Update a users email address by first requesting a verification code
      • Update a user's email address by verifying the received code
      • Create payment method
      • List payment methods
      • Delete payment method
      • List purchases
      • Get purchase
      • List reviews
      • Create review
      • Update review
      • Delete review
    • Profiles
      • Get user profile
      • List reviews
  1. Search

Retrieve a faceted hierarchy of items

GET
/search/hierarchy
Retrieve a faceted hierarchy of items (cards and products) to build a menu or navigation structure.
This endpoint provides a high-level overview of available items, grouped by game, set, and type.
This is useful for building a user interface that allows users to browse items by category.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.managem.co.uk/search/hierarchy'
Response Response Example
[
    {
        "facets": {
            "property1": [
                "string"
            ],
            "property2": [
                "string"
            ]
        },
        "slug": "string",
        "title": "string",
        "count": 0,
        "hierarchy": [
            {
                "facets": {
                    "property1": [
                        "string"
                    ],
                    "property2": [
                        "string"
                    ]
                },
                "slug": "string",
                "title": "string",
                "count": 0,
                "released": "string",
                "hierarchy": [
                    {
                        "facets": {
                            "property1": [
                                "string"
                            ],
                            "property2": [
                                "string"
                            ]
                        },
                        "slug": "string",
                        "title": "string",
                        "count": 0
                    }
                ]
            }
        ]
    }
]

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
The hierarchy of items, grouped by game, set, and type
Body

Previous
Retrieve multiple items by URN
Next
Retrieve search results for a specific game
Built with