K
V1HELLO

Hello world

GEThttps://api.poyst.com/v1/hello

Returns a greeting from the Poyst API.

Response

200A greeting message.
application/json
{
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "example": "Hello from Poyst API"
    }
  }
}
Language
Request
import requests

url = "https://api.poyst.com/v1/hello"

headers = {"accept": "application/json"}

response = requests.get(url, headers=headers)

print(response.text)
Response

Click Try It! to start a request and see the response here!

Or choose an example:

application/json200