overview
Skintick is a CS2 price API for developers who need one stable response shape across multiple skin marketplaces instead of a separate integration for every venue.
- Latest prices. Batch-query many market hash names in one request.
- Historical context. Pull stored snapshots when you need charts, trends, or backtests.
- Freshness metadata. Inspect collection timestamps and quality flags before using a quote.
- Cross-market analysis. Compare buy and sell routes with fee-aware spread endpoints.
1
normalized contract
100
names per latest-price batch
UTC
freshness timestamps
USD
normalized price currency
core endpoints
methodpathuse
POST
/v1/prices/latest
batch latest CS2 skin prices across selected markets
GET
/v1/items/{market_hash_name}/history
stored price history for one canonical item name
GET
/v1/spreads
fee-aware buy and sell opportunities across marketplaces
GET
/v1/status
collector health and marketplace freshness state
what you avoid
- Different naming rules and response shapes per marketplace.
- Homegrown currency conversion and stale-price guesses.
- Separate code paths for latest price, history, and spread logic.
- Opaque failures when a marketplace is delayed or degraded.
best fits
bots
Pricing checks
Load current quotes for watchlists, alerts, and order-routing decisions.
dashboards
Market views
Render one consistent table across marketplaces without client-side adapters.
analytics
History
Use stored snapshots for charts, confidence checks, and model features.
trading
Spreads
Compare markets with fees and freshness visible in the same workflow.
related pages