Tabby

GET Requests

Making GET requests with Tabby

GET Requests

Basic GET Request

tabby get https://api.example.com/users

With Headers

Add custom headers using the -H flag:

tabby get https://api.example.com/users -H "Authorization: Bearer token123"

Multiple Headers

tabby get https://api.example.com/users \
  -H "Authorization: Bearer token123" \
  -H "Accept: application/json"

Query Parameters

You can include query parameters directly in the URL:

tabby get "https://api.example.com/users?page=1&limit=10"

With Loop Mode

Run the same request multiple times:

tabby get https://api.example.com/users -l 10

This will make 10 GET requests to the endpoint.

On this page