Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.07 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.07 KB

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 to https://dexeloper.com:5555/echo.

You can also send a query parameter 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:

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

Without text parameter:

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

Returns:

{
    "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's and ASP.NET!