Skip to main content
GET
/
store
/
{id}
Get Store Item
curl --request GET \
  --url https://payments.shakesco.com/store/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 101,
  "user_id": 42,
  "name": "Wireless Headphones",
  "description": "High-quality wireless headphones",
  "price": "149.99000000",
  "quantity": 50,
  "image": "https://example.com/headphones.jpg",
  "created_at": "2026-05-01T10:00:00.000000Z",
  "updated_at": "2026-05-01T10:00:00.000000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.shakesco.com/llms.txt

Use this file to discover all available pages before exploring further.

For the complete documentation index, see llms.txt. Returns one item from your store catalogue.

Path Parameters

id
integer
required
The item’s numeric ID (returned by GET /store)

Response

id
integer
Item ID
name
string
Item name
description
string
Item description
price
string
Unit price as a decimal string
quantity
integer | null
Stock count, or null if untracked
image
string | null
Image URL, or null
const res = await fetch("https://payments.shakesco.com/store/101", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const item = await res.json();
{
  "id": 101,
  "user_id": 42,
  "name": "Wireless Headphones",
  "description": "High-quality wireless headphones",
  "price": "149.99000000",
  "quantity": 50,
  "image": "https://example.com/headphones.jpg",
  "created_at": "2026-05-01T10:00:00.000000Z",
  "updated_at": "2026-05-01T10:00:00.000000Z"
}