Plexy
Pay APIGate APIDashboard
Pay APIGate APIDashboard
  1. Products
  • Overview
  • Products
    • List product types
      GET
    • List product categories
      GET
    • List products
      GET
    • Get product
      GET
  • Orders
    • List orders
      GET
    • Create order
      POST
    • Get order by ID
      GET
  • Balances
    • Get balance
      GET
  • Deposits
    • List deposit history
      GET
  • System
    • API health
      GET
Pay APIGate APIDashboard
Pay APIGate APIDashboard
  1. Products

Get product

GET
/agent/{agent_id}/products/{productId}
Retrieves details of a product by ID.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Responses

🟢200
application/json
OK
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/agent/a12d5be1-3456-4c18-b111-33cdd0a1cc99/products/456' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Product details
{
    "id": 456,
    "name": "Steam Wallet Top Up",
    "slug": "steam-top-up",
    "category_id": 10,
    "product_type_id": 3,
    "region_code": "GLOBAL",
    "currency_code": "USD",
    "logo": "https://cdn.example.com/logos/steam.png",
    "price": 10,
    "min_amount": 5,
    "max_amount": 100,
    "step": 1,
    "description": "Instant Steam balance top-up.",
    "is_active": true
}
Modified at 2025-12-12 12:02:13
Previous
List products
Next
List orders
Built with