Convert natural language time expressions into structured timestamps.
π¬ Youβre testing a beta version β weβd love your feedback!
this weekend
Use PhraseParserAPI in your favorite language:
curl -X POST https://phraseparser.com/pp/time/parse \
-H "Content-Type: application/json" \
-d '{"time_phrase": "tomorrow at noon"}'
import requests
resp = requests.post(
"https://phraseparser.com/pp/time/parse",
json={"time_phrase": "tomorrow at noon"}
)
print(resp.json())
fetch("https://phraseparser.com/pp/time/parse", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ time_phrase: "tomorrow at noon" })
})
.then(res => res.json())
.then(data => console.log(data));
βnext Thursday at 9amβ
.