Every habit you build shapes your identity.
Bond your daily actions with what truly matters to you.
π¬ Youβre testing a beta version β weβd love your feedback!
Use PhraseParserAPI in your favorite language:
curl --location 'https://lifehabitsapi.com/lh/get-habit?life_aspect=Health%20and%20Fitness&life_value=vitality'
import requests
url = "https://lifehabitsapi.com/lh/get-habit?life_aspect=Health and Fitness&life_value=vitality"
resp = requests.request("GET", url)
print(resp.json())
fetch("https://lifehabitsapi.com/lh/get-habit?life_aspect=Health and Fitness&life_value=vitality", {
method: "GET"
})
.then(res => res.json())
.then(data => console.log(data));
{
"habit": "Take the stairs twice a day",
"value": "vitality",
"life_aspect": "Health and Fitness",
"inner_faculty": "Body",
"value_affinity": 0.9
}