Get an item price history
curl --request GET \
--url https://api.nephia.cc/v1/vinted/items/{id}/price-history \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nephia.cc/v1/vinted/items/{id}/price-history"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.nephia.cc/v1/vinted/items/{id}/price-history', 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.nephia.cc/v1/vinted/items/{id}/price-history",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.nephia.cc/v1/vinted/items/{id}/price-history"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.nephia.cc/v1/vinted/items/{id}/price-history")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nephia.cc/v1/vinted/items/{id}/price-history")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"itemId": "<string>",
"market": "<string>",
"history": [
{
"observedAt": "<string>",
"price": 123,
"currency": "<string>",
"status": "<string>",
"favouriteCount": 123,
"viewCount": 123
}
]
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}{
"error": "Rate limit exceeded",
"code": "TOO_MANY_REQUESTS"
}{
"error": "<string>",
"code": "<string>"
}Analytics
Get an item price history
Costs 3 credits per request. Returns every price and status Nephia observed for one item, oldest first. A point is recorded when the price or status changed, or once every 24 hours while it did not — so consecutive points are movements, not poll ticks. Coverage grows with usage: a series exists only for items that appeared in a search Nephia observed — a Vinted Watch tick or a /v1/vinted/search request. This is not a complete index of Vinted. Observations are anonymous public listing prices and carry no account identifier. Rows are kept for 365 days.
GET
/
v1
/
vinted
/
items
/
{id}
/
price-history
Get an item price history
curl --request GET \
--url https://api.nephia.cc/v1/vinted/items/{id}/price-history \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nephia.cc/v1/vinted/items/{id}/price-history"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.nephia.cc/v1/vinted/items/{id}/price-history', 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.nephia.cc/v1/vinted/items/{id}/price-history",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.nephia.cc/v1/vinted/items/{id}/price-history"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.nephia.cc/v1/vinted/items/{id}/price-history")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nephia.cc/v1/vinted/items/{id}/price-history")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"itemId": "<string>",
"market": "<string>",
"history": [
{
"observedAt": "<string>",
"price": 123,
"currency": "<string>",
"status": "<string>",
"favouriteCount": 123,
"viewCount": 123
}
]
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}{
"error": "Rate limit exceeded",
"code": "TOO_MANY_REQUESTS"
}{
"error": "<string>",
"code": "<string>"
}Authorizations
API key created from the Nephia dashboard for your Account.
Path Parameters
Query Parameters
Required range:
1 <= x <= 500Was this page helpful?