API key required. Sign up for an Ouro account and create an API key to get started.
/analyze-post
Analyze a post for validity, mistakes, and logic issues
const url = 'https://api.ouro.foundation/routes/hermes/analyze-post';
const options = {
method: 'POST',
headers: {
'Authorization': 'ApiKey {your-ouro-api-key}',
'Content-Type': 'application/json'
}
};
const payload = {
"post": {}
};
options.body = JSON.stringify(payload);
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Analyze a post for validity, mistakes, and logic issues
Route views over time