Managem
DocsMarketplace
DocsMarketplace
  1. Listings
  • Selling
    • Onboarding
    • Create a Listing
    • Grading your Cards
    • Packing your order
  • Buying
  • API
    • Search & Data
      • Items
        • Full-text search
      • Lookup
        • Retrieve an item
        • Retrieve multiple items
        • Retrieve usernames
      • Hierarchy
        • Game
          • Set
            • Type
              • Game set item type search
            • Game set search
          • Game search
        • Get full hierarchy
      • Listings
        • Search seller's listings
          POST
        • Search all listings
          POST
        • Search listings for an item
          POST
        • Retrieve historical prices for an item
          GET
    • Basket
      • List basket contents
      • Add an item
      • Update an item
      • Remove an item
      • Get basket summary
      • Get information, fees & delivery costs
      • Create checkout session
    • Sellers
      • Account
        • Create account
        • Get account details
        • Get current status
        • Get dashboard URL
        • Update vacation mode
      • Listings
        • Suggest prices
        • Create listing
        • Bulk create listings
        • Search listings
        • List listings by item
        • Get listing
        • Update listing
        • Delete listing
        • Create attachment
        • Finalize attachment
        • Delete attachment
      • Orders
        • List orders
        • Get order history
        • Get order
        • Update order
        • List carriers
        • Generate packing slip
        • Create shipment attachment
        • Finalize shipment attachment
      • Cases
        • List cases
        • Get case
        • Update case
        • Create case attachment
        • Finalize case attachment
      • Delivery Costs
        • Get delivery configuration
        • Upsert delivery configuration
      • Balance
        • Get current balance
        • Withdraw funds
        • List payouts
        • List transfers
      • Stats
    • Users
      • Conversations
        • List conversations
        • Create conversation
        • Get unread count
        • List messages
        • Lock conversation
        • Send a message
        • Create message attachment
        • Finalize message attachment
      • Address Management
        • Find/Lookup addresses
        • Retrieve full address details
        • Store a new Address
        • List all Addresses
        • Delete an Address
      • Reviews
        • List reviews
        • Get review
        • Create review
        • Update review
        • Delete review
      • Cases
        • List cases
        • Get case
        • Create case attachment
        • Finalize case attachment
        • Update case
      • Purchases
        • List purchases
        • Get purchase
        • Update purchase
        • List purchase history
      • Payments
        • Get customer portal link
        • Get invoice download URL
        • List invoices
      • Account
        • Get account information
        • Update password
        • Update user profile
        • Update email address
        • Update email address (verification)
        • Create avatar upload url
        • Finalize avatar upload
        • Create cover upload url
        • Finalize cover upload
      • Stats
    • Profiles
      • Get user profile
      • List reviews
  • Legals
    • Seller Policy
    • Buyer Protection
    • Buyer Policy
    • Grading & Condition Policy
    • Terms & Conditions
    • Privacy Policy
  1. Listings

Search listings for an item

POST
/listings/item
Retrieve listings for a specific item by URN or slug.

Request

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

Examples

Responses

🟢200OK
application/json
Listings for the item
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.managem.co.uk/listings/item' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "query": "string",
    "filters": [
        {
            "property1": null,
            "property2": null
        }
    ],
    "facets": {
        "property1": [
            "string"
        ],
        "property2": [
            "string"
        ]
    },
    "from": 0,
    "size": 25,
    "sorting": {
        "field": "name",
        "order": "asc"
    },
    "urn": "urn:managem:pokemon:product/pop8/pop-series-8-pack-4c899e14",
    "slug": "/pokemon/product/pop8/pop-series-8-pack-4c899e14"
}'
Response Response Example
{
    "total": 0,
    "hits": [
        {
            "id": "string",
            "sellerId": "string",
            "condition": "string",
            "price": 0,
            "quantity": 1,
            "available": 0,
            "language": "string",
            "variants": [],
            "comment": "string",
            "gradingProvider": "string",
            "gradingScore": "string",
            "gradingNumber": "string",
            "createdAt": "string",
            "updatedAt": "string",
            "item": {
                "urn": "string",
                "type": "card",
                "game": "Pokemon",
                "title": "string",
                "name": "string",
                "rarity": "string",
                "number": "string",
                "description": "string",
                "set": {
                    "name": "string",
                    "size": 0,
                    "urn": "string",
                    "counts": {
                        "printed": 0,
                        "total": 0
                    },
                    "symbol": {
                        "url": "string"
                    },
                    "released": "string",
                    "references": [
                        "string"
                    ]
                },
                "series": {
                    "name": "string",
                    "urn": "string"
                },
                "images": [
                    {
                        "urn": "string",
                        "illustrator": "string",
                        "url": "http://example.com"
                    }
                ],
                "alternatives": [
                    "string"
                ],
                "metadata": [
                    {
                        "name": "string",
                        "value": "string",
                        "detail": null
                    }
                ],
                "price": 0,
                "available": 0,
                "quantity": 0,
                "min": {
                    "id": "string",
                    "sellerId": "string",
                    "price": 0
                },
                "max": {
                    "id": "string",
                    "sellerId": "string",
                    "price": 0
                }
            },
            "seller": {
                "id": "string",
                "username": "string",
                "avatar": "http://example.com",
                "cover": "http://example.com",
                "profile": "string",
                "reviews": 0,
                "rating": 0,
                "score": 0,
                "sales": 0,
                "purchases": 0
            },
            "locked": true,
            "attachments": []
        }
    ],
    "facets": {
        "property1": {
            "property1": 0,
            "property2": 0
        },
        "property2": {
            "property1": 0,
            "property2": 0
        }
    }
}
Previous
Search all listings
Next
Retrieve historical prices for an item
Built with