# Request, Response, Pagination, and Error formats

Supply'd's API exchanges data in JSON format, where:

1. all requests should include an `Accept: application/json` header
2. all responses will include a `Content-Type: application/json` header

POST/PUT requests expect JSON in the HTTP message body, and you must specify the `Content-Type` header in your request.

## Pagination

If an API call requires pagination the response will include a link header for the next page of results:

`Link: </v1/path/to/resource?page=X>; rel=next`

The final page of results will not have a link header.

## Errors

Depending on your request's `Accept` header, the error will be returned as plain-text or JSON.

Plain-text errors are just the message as a string.

JSON errors return the message, and may include  the following format:

```
{
    "error": "<message>",
    "data": null|object
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.supplyd.co/api/request-response-pagination-and-error-formats.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
