API build version
GET
/version
const url = 'https://api.getvespy.com/version';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.getvespy.com/versionResponses
Section titled “Responses”Default Response
Media typeapplication/json
object
buildDate
required
string
commit
required
string
Examplegenerated
{ "buildDate": "example", "commit": "example"}