Skip to main content
POST
/
seller
/
listings
/
suggest
Suggest listing prices
curl --request POST \
  --url https://api.managem.co.uk/seller/listings/suggest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "urns": [
    "<string>"
  ]
}
'
{
  "suggestions": [
    {
      "default": 123,
      "urn": "<string>",
      "holo": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request payload containing one or more URNs that should be resolved into price suggestions.

urns
string[]
required

Collection of URNs to retrieve price suggestions for.

Required array length: 1 - 50 elements
Pattern: [^/]$

Response

Price suggestions stored for the provided URNs

Response payload containing the price suggestions associated with the URNs provided in the request.

suggestions
object[]
required

Price suggestions retrieved from the KV store. Suggestions are only returned for URNs that exist in the store.