Retrieve historical prices
curl --request GET \
--url https://api.managem.co.uk/listings/pricesimport requests
url = "https://api.managem.co.uk/listings/prices"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.managem.co.uk/listings/prices', 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/listings/prices",
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/listings/prices"
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/listings/prices")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.managem.co.uk/listings/prices")
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[
{
"time": "2026-03-01T00:00:00.000Z",
"listed": {
"min": 1000,
"max": 1500,
"avg": 1250,
"vol": 8
},
"sold": {
"min": 1100,
"max": 1400,
"avg": 1280,
"vol": 4
}
},
{
"time": "2026-03-02T00:00:00.000Z",
"listed": {
"min": 900,
"max": 1600,
"avg": 1210,
"vol": 11
},
"sold": {
"min": 1000,
"max": 1500,
"avg": 1300,
"vol": 6
}
}
]Listings
Retrieve historical prices
Retrieve time-series price history for a catalog item.
Use this endpoint for pricing charts, trend indicators, and historical comparison views.
Input behavior:
- Accepts item lookup via
urnorslug. - Supports a predefined
rangewindow (for example1M).
Rules and responses:
- Returns
404when the item cannot be resolved. - Returns normalized series data for the resolved item across the selected range.
- Short-lived caching is applied to improve chart load times.
GET
/
listings
/
prices
Retrieve historical prices
curl --request GET \
--url https://api.managem.co.uk/listings/pricesimport requests
url = "https://api.managem.co.uk/listings/prices"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.managem.co.uk/listings/prices', 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/listings/prices",
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/listings/prices"
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/listings/prices")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.managem.co.uk/listings/prices")
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[
{
"time": "2026-03-01T00:00:00.000Z",
"listed": {
"min": 1000,
"max": 1500,
"avg": 1250,
"vol": 8
},
"sold": {
"min": 1100,
"max": 1400,
"avg": 1280,
"vol": 4
}
},
{
"time": "2026-03-02T00:00:00.000Z",
"listed": {
"min": 900,
"max": 1600,
"avg": 1210,
"vol": 11
},
"sold": {
"min": 1000,
"max": 1500,
"avg": 1300,
"vol": 6
}
}
]Query Parameters
URN of the item to lookup
Example:
"urn:managem:pokemon:product/pop8/pop-series-8-pack-4c899e14"
Slug of the item to lookup
Example:
"/pokemon/product/pop8/pop-series-8-pack-4c899e14"
Available options:
1M, 3M, 6M, 1Y