Basic Workflow¶
The typical workflow in API Dev Studio:
- Create a mock endpoint - Define the path, method, and response
- Test it - Make requests to your mock server
- Inspect requests - View logged requests in the Request Inspector
- Iterate - Refine your mocks based on what you learn
Create Your First Endpoint¶
- With your project selected, click Create Mock
- Set the path:
/api/users - Set the method:
GET - In the response body, enter:
- Click Save (or changes auto-save after a moment)
Test Your Endpoint¶
You'll see your mock response!
View in Request Inspector¶
- Click Requests in the sidebar
- See your curl request logged with full details
- Click a request to view headers, body, and response
Next Steps¶
- Add dynamic data with template variables
- Set up proxy recording to capture real API responses
- Create multiple response variations