https://api.poyst.com/v1/helloReturns a greeting from the Poyst API.
application/json{
"type": "object",
"properties": {
"message": {
"type": "string",
"example": "Hello from Poyst API"
}
}
}import requests
url = "https://api.poyst.com/v1/hello"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)Click Try It! to start a request and see the response here!
Or choose an example: