fakestore_get_product
Retrieve product details by ID from a fake e-commerce API for testing, demos, and development purposes.
Instructions
Get a single product by its ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Product ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Product ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}