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 search results for a specific game

POST
/search/hierarchy/{game}
Retrieve the search results for a specific game. This endpoint accepts a slug from the hierarchy, returning the search results
for the matching facets property.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.managem.co.uk/search/hierarchy/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "query": "string",
    "facets": {
        "property1": [
            "string"
        ],
        "property2": [
            "string"
        ]
    },
    "from": 0,
    "size": 25,
    "sorting": {
        "field": "name",
        "order": "asc"
    }
}'
Response Response Example
{
    "total": 0,
    "hits": [
        {
            "id": "string",
            "urn": "string",
            "type": "card",
            "game": "Pokemon",
            "title": "string",
            "name": "string",
            "number": "string",
            "description": "string",
            "set": {
                "id": "string",
                "name": "string",
                "size": 0,
                "counts": {
                    "printed": 0,
                    "total": 0
                },
                "released": "string",
                "references": [
                    "string"
                ]
            },
            "series": {
                "name": "string",
                "id": "string"
            },
            "image": {
                "illustrator": "string",
                "url": "http://example.com"
            }
        }
    ],
    "facets": {
        "property1": {
            "property1": 0,
            "property2": 0
        },
        "property2": {
            "property1": 0,
            "property2": 0
        }
    }
}

Request

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

Body Params application/json

Examples

Responses

🟢200OK
application/json
Results for the matching game
Body

Previous
Retrieve a faceted hierarchy of items
Next
Retrieve search results for a specific set
Built with