# Requests

URL: https://docs.emergingtravel.com/docs/fundamentals/requests/

Tags: fundamentals

---


You should send requests via the HTTPS protocol. There are requests with:

* GET method—for obtaining data.
* POST method—for creating, updating, and deleting.

The request body and the `data` field are in the JSON format.

The GET example:

```shell
curl -g --user '<KEY_ID>:<KEY>' 'https://api.worldota.net/api/b2b/v3/hotel/info/?data={"id":"city_hotel_berlin_east","language":"en"}'
```

The POST example:

```shell
curl --user '<KEY_ID>:<KEY>' --data '{"id":"city_hotel_berlin_east","language":"en"}' "https://api.worldota.net/api/b2b/v3/hotel/info/"
```

> [!NOTE]
> * To view your request limit, use the **Retrieve endpoints** call:
>   * [B2B](/docs/b2b-api/endpoints/retrieve-endpoints/).
>   * [Affiliate](/docs/affiliate-api/endpoints/retrieve-endpoints/).
> * Increasing limits is possible for a live key after separate approval, depending on the expected sales volume.
> * Limits are increased only after certification is completed.


