Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 430 Bytes

sample.md

File metadata and controls

30 lines (24 loc) · 430 Bytes

Sample API

Hello world!

Available methods in the sample API

  • GET /sample/test.ws says hello world!
  • GET /sample/hello/[name].ws says hello to the specified name.

These sample APIs are intended for testing. No authentication is required.

Hello world

GET /sample/test.ws
{
    "test": "Hello world"
}

Hello Sam

GET /sample/hello/Sam.ws
{
    "hello": "Hello Sam"
}