Endpoint
GET
Info
Parameters
1Response
41openapi: 3.0.32info:3 title: Mock API4 version: 1.0.05 description: Generated by MockAPI Designer6paths:7 /api/users/{id}:8 get:9 summary: Get user by ID10 description: Retrieves a single user by their unique identifier11 parameters:12 - name: id13 in: path14 required: true15 schema:16 type: string17 responses:18 '200':19 description: Successful response20 content:21 application/json:22 schema:23 type: object24 properties:25 id:26 type: string27 example: usr_123abc28 name:29 type: string30 example: John Doe31 email:32 type: string33 example: john@example.com34 created_at:35 type: string36 example: '2024-01-15T10:30:00Z'37 required:38 - id39 - name40 - email41 - created_at42