{ "meta": { "name": "User API Documentation", "type": "http", "seq": 1 }, "http": { "method": "get", "url": "https://api.example.com/users" }, "examples": [ { "name": "Get User by ID", "description": "Example of getting a user by ID", "request": { "url": "https://api.example.com/users/123", "method": "get", "body": { "mode": "none" } }, "response": { "status": "200", "statusText": "OK", "body": { "type": "json", "content": "{\n \"id\": 123,\n \"name\": \"John Doe\",\n \"email\": \"john@example.com\"\n}" } } }, { "name": "Create New User", "description": "Example of creating a new user", "request": { "url": "https://api.example.com/users", "method": "post", "body": { "mode": "json", "json": "{\n \"name\": \"New User\",\n \"email\": \"newuser@example.com\"\n}" } }, "response": { "status": "201", "statusText": "OK", "body": { "type": "json", "content": "{\n \"id\": 456,\n \"name\": \"New User\",\n \"email\": \"newuser@example.com\",\n \"created_at\": \"2023-01-15T10:30:00Z\"\n}" } } } ] }