developerx-official / EchoApi

A test API that can be accessed through GET requests.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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!

About

A test API that can be accessed through GET requests.

License:MIT License


Languages

Language:C# 100.0%