SimpleTech Labs
WebsiteConsoleAPITwitterTelegram ChannelTelagram Chat
SimplePay
SimplePay
  • Introduction
    • Overview
    • Core concepts
      • Transparency
      • Non-Custodial
      • Direct payments
      • Lowest Fees
    • Protocol
    • Security
      • Collected data
  • GETTING STARTED
    • Create an App
    • Setup Client
      • Widget
    • Setup Server
      • Webhooks
    • No-Code
      • Web and Telegram Store
  • Javascript SDK
    • Introduction
    • Services
      • Cryptocurrency
      • Currency
      • Invoice
  • Components
    • Payment Widget
  • Simple ID
    • Auth.js integration Guide
  • API Documentation
    • Overview
    • Apps
      • Get App Info
      • Dev Mode
    • Wallets
    • Assets
      • Fiat Currency
      • Cryptocurrency
    • Products
    • Invoices
      • Methods
    • Transactions
      • Page 1
    • Billing
  • Referral Program
    • 💰Referral Program Basics
  • Legal
    • 📄Terms of Use
    • 🔏Privacy Policy
    • 🍪Cookies
Powered by GitBook
On this page

Was this helpful?

  1. API Documentation

Products

PreviousCryptocurrencyNextInvoices

Last updated 5 months ago

Was this helpful?

Get Product Details

get

Retrieves detailed information about a specific product, including prices in different currencies.

Path parameters
idstring · uuidRequired

Product ID

Query parameters
vinteger · enumRequired

API version, must be 1

Possible values:
Responses
200
Product details successfully retrieved
application/json
401
Unauthorized - Invalid or missing authentication token
404
Product not found
get
GET /product/{id} HTTP/1.1
Host: api.simplepay.ai
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "name": "text",
  "description": "text",
  "image": "https://example.com",
  "created_at": "2025-05-29T07:09:41.386Z",
  "updated_at": "2025-05-29T07:09:41.386Z",
  "prices": [
    {
      "price": 1,
      "currency": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "symbol": "text",
        "code": 1
      }
    }
  ]
}