An open API service indexing awesome lists of open source software.

https://github.com/developerx-official/echoapi

A test API that can be accessed through GET requests.
https://github.com/developerx-official/echoapi

api asp-net-core testing

Last synced: 1 day ago
JSON representation

A test API that can be accessed through GET requests.

Awesome Lists containing this project

README

          

> [!NOTE]
> This project is in maintenance mode, and is unlikely to receive feature updates.

# EchoApi
This is a test api that can be accessed by sending a [GET request](https://www.w3schools.com/tags/ref_httpmethods.asp) to `https://dexeloper.com:5555/echo`.

You can also send a [query parameter](https://www.abstractapi.com/api-glossary/query-parameters) called `text`.

Requests are ratelimited to 2 per 1 second, and 100 per 1 minute.


With text parameter:
---

```
GET https://dexeloper.com:5555/echo?text=Pizza!
```

Returns:

```json
{
"echo": "Pizza!",
"dateTime": "yyyy-mm-ddT00:00:00.0000000-00:00"
}
```

Without text parameter:
---

```
GET https://dexeloper.com:5555/echo
```

Returns:

```json
{
"echo": "Hello, World!",
"dateTime": "yyyy-mm-ddT00:00:00.0000000-00:00"
}
```


That's all really! I hope this helps people test or get introduced to [API](https://dotnet.microsoft.com/en-us/apps/aspnet/apis)'s and [ASP.NET](https://dotnet.microsoft.com/en-us/apps/aspnet)!