fakestore_get_user
Retrieve user details by ID from the Fake Store API to access customer information for e-commerce applications, testing, and development.
Instructions
Get a single user by their ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | User ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "User ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}