Fast, simple API testing tool. Now with environment variables and GraphQL!
Now with more bug fixes.
Check out the blogLearn how to use TullyAPI for common API testing scenarios. From simple GET requests to complex authenticated workflows, these examples will help you get the most out of TullyAPI.
Learn the basics by testing a simple public API that returns JSON data without authentication.
GET method and enter path: /usershttps://jsonplaceholder.typicode.comSend data to an API using POST requests with a JSON body to create new resources.
POST method and path: /postshttps://jsonplaceholder.typicode.com{
"title": "My First Post",
"body": "This is the content",
"userId": 1
}
Test APIs that require Bearer token authentication (common with JWT-based APIs).
GET /api/protected)Authorization: Bearer YOUR_TOKEN headerFilter, search, or paginate API results using query parameters.
GET /posts with base URL https://jsonplaceholder.typicode.comuserId = 1_limit = 5Add custom HTTP headers for API keys, content types, or other requirements.
X-API-Key with your API key valueAccept with value application/jsonTest a full CRUD (Create, Read, Update, Delete) workflow using different HTTP methods.
POST /posts with JSON bodyGET /posts/1 to fetch the created postPUT /posts/1 with updated JSON bodyPATCH /posts/1 with partial dataDELETE /posts/1 to remove the postKeep your API tests organized by grouping related endpoints into collections.
Use TullyAPI's built-in performance tracking to monitor response times and identify slow endpoints.
Test APIs that use Basic Authentication with username and password.
Authorization headerExport your API collections to share with team members or back up your work.
Try these examples yourself and discover how TullyAPI makes API testing simple and fast.
Open TullyAPI