Get Version
import requests
url = "https://platform.reducto.ai/version"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://platform.reducto.ai/version', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.reducto.ai/version"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}"<string>"Utilities
Get Version
GET
/
version
Get Version
import requests
url = "https://platform.reducto.ai/version"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://platform.reducto.ai/version', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.reducto.ai/version"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}"<string>"Response
200 - application/json
Successful Response
The response is of type string.
Was this page helpful?
⌘I