curl --request GET \
--url https://api.skinshark.gg/market/transactions/{tradeId} \
--header 'api-key: <api-key>'import requests
url = "https://api.skinshark.gg/market/transactions/{tradeId}"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://api.skinshark.gg/market/transactions/{tradeId}', 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.skinshark.gg/market/transactions/{tradeId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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.skinshark.gg/market/transactions/{tradeId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("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.skinshark.gg/market/transactions/{tradeId}")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.skinshark.gg/market/transactions/{tradeId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"requestId": "<string>",
"success": true,
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "<string>",
"steamId": "<string>",
"tradeUrl": "<string>",
"game": "730",
"items": [
{
"id": "<string>",
"name": "<string>",
"marketHashName": "<string>",
"type": "<string>",
"iconUrl": "<string>",
"price": 123,
"externalId": "<string>",
"exterior": "<string>",
"rarity": "<string>",
"color": "<string>",
"phase": "<string>",
"wear": "<string>",
"paintSeed": 123,
"stickers": [
{
"name": "<string>",
"slot": 123,
"iconUrl": "<string>",
"wear": 123
}
],
"charm": {
"name": "<string>",
"iconUrl": "<string>",
"pattern": "<string>"
},
"delivery": "<string>",
"tradable": true,
"errorDetail": "<string>",
"refund": {
"amount": 123,
"penalty": 123,
"buyerFault": true
}
}
],
"summary": {
"total": 123,
"delivered": 123,
"completed": 123,
"failed": 123
},
"totalPrice": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"offerId": "<string>",
"externalId": "<string>",
"holdEndDate": "2023-11-07T05:31:56Z",
"settledAt": "2023-11-07T05:31:56Z",
"error": "<string>"
},
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}{
"requestId": "<string>",
"success": true,
"data": "<unknown>",
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}{
"requestId": "<string>",
"success": true,
"data": "<unknown>",
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}{
"requestId": "<string>",
"success": true,
"data": "<unknown>",
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}Get transaction(s)
Auth context: sub-user — On-Behalf-Of required.
Look up a trade by its id or your externalId. Pass a single ref to get one Trade
(404 if it doesn’t resolve), or a comma-separated list of up to 100 refs for a batch
status poll — that returns an array of the trades that resolve (missing refs are
omitted, no 404). Comma is the delimiter, so ids containing a comma can’t be looked up here.
curl --request GET \
--url https://api.skinshark.gg/market/transactions/{tradeId} \
--header 'api-key: <api-key>'import requests
url = "https://api.skinshark.gg/market/transactions/{tradeId}"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://api.skinshark.gg/market/transactions/{tradeId}', 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.skinshark.gg/market/transactions/{tradeId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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.skinshark.gg/market/transactions/{tradeId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("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.skinshark.gg/market/transactions/{tradeId}")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.skinshark.gg/market/transactions/{tradeId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"requestId": "<string>",
"success": true,
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "<string>",
"steamId": "<string>",
"tradeUrl": "<string>",
"game": "730",
"items": [
{
"id": "<string>",
"name": "<string>",
"marketHashName": "<string>",
"type": "<string>",
"iconUrl": "<string>",
"price": 123,
"externalId": "<string>",
"exterior": "<string>",
"rarity": "<string>",
"color": "<string>",
"phase": "<string>",
"wear": "<string>",
"paintSeed": 123,
"stickers": [
{
"name": "<string>",
"slot": 123,
"iconUrl": "<string>",
"wear": 123
}
],
"charm": {
"name": "<string>",
"iconUrl": "<string>",
"pattern": "<string>"
},
"delivery": "<string>",
"tradable": true,
"errorDetail": "<string>",
"refund": {
"amount": 123,
"penalty": 123,
"buyerFault": true
}
}
],
"summary": {
"total": 123,
"delivered": 123,
"completed": 123,
"failed": 123
},
"totalPrice": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"offerId": "<string>",
"externalId": "<string>",
"holdEndDate": "2023-11-07T05:31:56Z",
"settledAt": "2023-11-07T05:31:56Z",
"error": "<string>"
},
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}{
"requestId": "<string>",
"success": true,
"data": "<unknown>",
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}{
"requestId": "<string>",
"success": true,
"data": "<unknown>",
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}{
"requestId": "<string>",
"success": true,
"data": "<unknown>",
"error": {
"code": 1500,
"key": "INSUFFICIENT_BALANCE",
"message": "Insufficient balance"
}
}Authorizations
Your raw API key. Generate, rotate, and revoke keys from the merchant
dashboard. Keys can optionally be bound to one or more allowed source
IPs — requests from any other IP are rejected with API_KEY_IP_DENIED.
Headers
Sub-user UUID or the merchant's externalId for that sub-user.
Required for sub-user-context routes; rejected (via requireMerchant)
on merchant-context routes.
1 - 128Path Parameters
One trade id/externalId, or up to 100 comma-separated refs (each ≤ 128 chars).
1