BARB

Barb logo

Barb is a file-based API query tool that works nicely with version control and fits into UNIX terminal usage.

Example usage

barb [options] <file 1> <file 2> ... <file n>

CLI options

Barb format

Barb uses a custom file format to perform requests. Each file contains one request and is started by a request preamble. Example:

```

POST^http://my-blog.com/posts

Authorization: TOKEN {API_TOKEN}

|jq.filter

{ "title": "A post", "content": "My pretty blog post" }

```

The preamble contains the directives relevant to performing the request, such as the method, URL and headers. The preamble must end with an empty line.

Verb line

The verb line indicates to barb what sort of request to perform and where to. It follows this rigid format:

```

^

```

The URL supports variable substitution, but METHOD does not.

Supported methods are:

Headers

Headers are formatted as follows:

```

:

```

The HEADER VALUE supports variable substitution, HEADER NAME does not.

There can be none or many headers.

Filter

Barb supports JQ filtering of the response body. This has the following format:

```

|

```

The JQ FILTER supports variable substitution. Refer to the JQ manual for more information on the filters and their syntax.

Body

Anything after the preamble is considered as a body and will be send in the request for the following methods:

Body does not support variable substitution.

Variable substitution

Barb can include environment variable values into the requests with the following placeholder format:

{VARIABLE NAME}

Which allows to do the following:

``` $ export BASE_URL="http://127.0.0.1:8000" $ cat api-status.barb

GET^{BASE_URL}/api/v1/status

$ barb api-status.barb 200 OK GET http://127.0.0.1:8000/api/v1/status { "status": "OK" } ```

Credits