detail
Retrieve detailed product information using the unique product ID to facilitate informed purchasing decisions on Bitrefill.
Instructions
Get detailed information about a product
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the product |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Unique identifier of the product",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}