# Getting Started

The `HypeProxy.io` API is organized around a [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) architecture, all endpoints need to be [authenticated](/basic-concepts/authentication.md), and keep in mind that this documentation describes only the `v2` API.

Following the REST standard, you will often find a listing endpoint, an endpoint for retrieving a particular item, and sometimes a modification and/or deletion endpoint.

## How to connect to the API?

We provide two base URLs, we advise you to use the first one.

```bash
curl "https://api.hypeproxy.io/v2/"
curl "https://hypeproxy-api.azurewebsites.net/v2/"
```

## Authentication

Our API requires the use of a [JWT token](https://jwt.io/introduction) which can also be passed as a query string parameter.

{% content-ref url="/pages/-MdX70aL0b2wZZ\_TzxtX" %}
[API Authentication](/basic-concepts/authentication.md)
{% endcontent-ref %}

## Perform a Health Check

The API contains a health check endpoint that you can use if you have any impressions of failure.

The health check endpoint will also tell you if down bays have been detected.

```bash
curl "https://api.hypeproxy.io/health"
```

## Status Page

We have been offering a new status page for a few months now which is accessible [here](https://status.hypeproxy.io/).

![HypeProxy.io Status Page Screenshot.](/files/8l8FSW1IrWGbP2HnPEw8)

{% embed url="<https://status.hypeproxy.io>" %}

###


---

# 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.hypeproxy.io/basic-concepts/getting-started.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.
