Documentation
Back to Docs

API Endpoints

Complete reference for all available API endpoints.

Base URL

https://api.cs2cap.com/v1
Items
GET/items

List and search items

querywearraritytypemin_pricemax_pricelimitoffset
GET/items/:id

Get item details

GET/items/:id/prices

Get current prices from all providers

GET/items/:id/history

Get historical price data

periodinterval
GET/items/:id/sales

Get recent sales

limitoffset
Market
GET/market/stats

Get overall market statistics

GET/market/trending

Get trending items

limit
GET/market/movers

Get top price movers

directionlimit
Providers
GET/providers

List all supported providers

GET/providers/:id

Get provider details

Example: Get Item Details

Request
GET /items/ak47-redline-ft
Response
{
  "data": {
    "id": "ak47-redline-ft",
    "name": "AK-47 | Redline",
    "wear": "Field-Tested",
    "rarity": "Classified",
    "type": "Rifle",
    "collection": "Phoenix Collection",
    "float_range": [0.15, 0.38],
    "prices": {
      "lowest_ask": 14.52,
      "highest_bid": 13.80,
      "last_sale": 14.25
    },
    "volume_24h": 1247,
    "change_24h": 2.3
  }
}