# About the API

The Payload Pro API allows you to send arbitrary request to endpoints in `bins` that record the contents of your payload that you can retrieve with another request.

This allows you to check the content of your request so that you can verify that is what you expected.

It is open source, so that you can run your own instance of it on your own machines.

It is also currently unauthenticated, so you can simply make calls to the endpoints.

## Root Endpoint

<mark style="color:blue;">`GET`</mark> `https://payload-pro.ubio.dev/`

To make your first call, you can call the root Endpoint

#### Path Parameters

| Name | Type   | Description |
| ---- | ------ | ----------- |
|      | string |             |

{% tabs %}
{% tab title="200 " %}

```javascript
{
   "data" : {
      "attributes" : {
         "message" : "Welcome to Payload Pro"
      },
      "links" : {
         "site" : "https://payload-pro.ubio.dev",
         "api" : "https://payload-pro.ubio.dev"
      },
      "type" : "root"
   }
}
```

{% endtab %}
{% endtabs %}
