GET
/
version
import requests

url = "https://platform.reducto.ai/version"

response = requests.request("GET", url)

print(response.text)
"<any>"

Response

200 - application/json
Successful Response

The response is of type any.

Was this page helpful?