# Introduction

The Flip.to API is organized around REST. It is a standards-based API that has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

## API Authorization

All requests must be authorized with an API Key that is available in your Flip.to account. It should be sent using basic authentication as the “username” with no password. For example, if the key were “nevergoingtogiveyouup:”, the requests would need a header like this in base64:

```
Authorization: Basic bmV2ZXJnb2luZ3RvZ2l2ZXlvdXVwOg==
```


---

# 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://docs.flip.to/developers/api/readme.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.
