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.
- Host: GitHub
- URL: https://github.com/developerx-official/echoapi
- Owner: developerx-official
- License: mit
- Created: 2022-07-31T05:18:21.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-10T20:05:01.000Z (over 1 year ago)
- Last Synced: 2025-01-03T20:21:41.407Z (over 1 year ago)
- Topics: api, asp-net-core, testing
- Language: C#
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
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)!