Get prices
Retrieves uploaded pricing sheet data for the shop associated with the API key, filtered by region. Returns paginated price entries.
API key authentication for server-side SDK operations. Used for secure server-to-server communication.
In: header
Query Parameters
ISO-3166-1 alpha-2 region/country code (e.g., 'PL', 'US', 'DE')
Optional ISO-4217 currency code filter (e.g., 'PLN', 'USD', 'EUR')
Optional platform filter. Omit or set to PRICING_PLATFORM_UNSPECIFIED to return all platforms.
"PRICING_PLATFORM_UNSPECIFIED" | "PRICING_PLATFORM_UNIVERSAL" | "PRICING_PLATFORM_IOS" | "PRICING_PLATFORM_ANDROID"Optional filter to specific item IDs (SKUs). Response size is governed by limit/offset pagination, not by the number of item_ids.
Maximum number of items per page. Default 50, max 100. Values above 100 are clamped to 100.
int64Pagination offset. Default 0.
int64Response Body
curl -X GET "https://test-api.stash.gg/sdk/server/prices?region=string¤cy=string&platform=PRICING_PLATFORM_UNSPECIFIED&itemIds=string&limit=0&offset=0"{
"prices": [
{
"itemId": "string",
"platform": "PRICING_PLATFORM_UNSPECIFIED",
"region": "string",
"currency": "string",
"priceCents": 0,
"decimalPlaces": 0
}
],
"nextOffset": 0
}{
"code": 0,
"message": "string",
"details": [
{
"@type": "string",
"property1": null,
"property2": null
}
]
}How is this guide?
Convert prices POST
Converts amounts from a source currency to a destination country's local currency using live exchange rates. Returns converted amounts in minor units and locale-formatted display strings.
Generate quick pay URL (server) POST
Generates a quick payment URL for server-side operations. This endpoint is used internally for creating payment links with user information.