This block + 6,000 more — yours with Pro

Chat API Playground

6/200
Docs

API Playground

Test and debug endpoints

Ready
Welcome to the API Playground! Describe the API request you want to test, and I'll help you build and execute it.
2:00 PM
You
I want to test a GET request to fetch user data from /api/users/123
2:02 PM
I've prepared your GET request. Here's the configuration and equivalent curl command:
GEThttps://api.example.com/users/123
Headers
Content-Type:application/json
Authorization:Bearer token_xyz
cURL Command
curl -X GET "https://api.example.com/users/123" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer token_xyz"
Response
200 OK142ms
Headers
content-type:application/json
cache-control:no-cache
Body
{
  "id": 123,
  "name": "Sarah Chen",
  "email": "[email protected]",
  "role": "developer"
}
2:02 PM