Dashboard
Active reminders 3
Check model output quality
· high
Compare responses across 3 model configs.
Check model output quality
· high
Compare all the cheeses across 3 model configs.
Schedule a round of golf with buddies
· high
Weather is perfect (75°F, sunny)! Call the guys and book a tee time.
Recent tool calls last 3 View all →
params
{"title":"Check model output quality","remind_at":"2026-04-24T17:00:00Z","importance":"high","time_estimate_minutes":20,"details":"Compare all the cheeses across 3 model configs.","tool":{"title":"Check model output quality","remind_at":"2026-04-24T17:00:00Z","importance":"high","time_estimate_minut…
{
"title": "Check model output quality",
"remind_at": "2026-04-24T17:00:00Z",
"importance": "high",
"time_estimate_minutes": 20,
"details": "Compare all the cheeses across 3 model configs.",
"tool": {
"title": "Check model output quality",
"remind_at": "2026-04-24T17:00:00Z",
"importance": "high",
"time_estimate_minutes": 20,
"details": "Compare all the cheeses across 3 model configs."
}
}
response
{"id":10,"title":"Check model output quality","remind_at":"2026-04-24T17:00:00.000Z","dismissed_at":null,"importance":"high","time_estimate_minutes":20,"created_at":"2026-04-29T02:23:42.552Z","updated_at":"2026-04-29T02:23:42.556Z","details":"Compare all the cheeses across 3 model configs.","details_html":"\u003cdiv class=\"trix-content\"\u003e\n Compare all the cheeses across 3 model configs.\n\…
{
"id": 10,
"title": "Check model output quality",
"remind_at": "2026-04-24T17:00:00.000Z",
"dismissed_at": null,
"importance": "high",
"time_estimate_minutes": 20,
"created_at": "2026-04-29T02:23:42.552Z",
"updated_at": "2026-04-29T02:23:42.556Z",
"details": "Compare all the cheeses across 3 model configs.",
"details_html": "<div class=\"trix-content\">\n Compare all the cheeses across 3 model configs.\n</div>\n",
"due": true,
"active": true
}
params
{"title":"Schedule a round of golf with buddies","remind_at":"2026-04-28T17:00:00Z","importance":"high","time_estimate_minutes":15,"details":"Weather is perfect (75°F, sunny)! Call the guys and book a tee time.","tool":{"title":"Schedule a round of golf with buddies","remind_at":"2026-04-28T17:00:00…
{
"title": "Schedule a round of golf with buddies",
"remind_at": "2026-04-28T17:00:00Z",
"importance": "high",
"time_estimate_minutes": 15,
"details": "Weather is perfect (75°F, sunny)! Call the guys and book a tee time.",
"tool": {
"title": "Schedule a round of golf with buddies",
"remind_at": "2026-04-28T17:00:00Z",
"importance": "high",
"time_estimate_minutes": 15,
"details": "Weather is perfect (75°F, sunny)! Call the guys and book a tee time."
}
}
response
{"id":9,"title":"Schedule a round of golf with buddies","remind_at":"2026-04-28T17:00:00.000Z","dismissed_at":null,"importance":"high","time_estimate_minutes":15,"created_at":"2026-04-28T15:41:56.646Z","updated_at":"2026-04-28T15:41:56.649Z","details":"Weather is perfect (75°F, sunny)! Call the guys and book a tee time.","details_html":"\u003cdiv class=\"trix-content\"\u003e\n Weather is perfect …
{
"id": 9,
"title": "Schedule a round of golf with buddies",
"remind_at": "2026-04-28T17:00:00.000Z",
"dismissed_at": null,
"importance": "high",
"time_estimate_minutes": 15,
"created_at": "2026-04-28T15:41:56.646Z",
"updated_at": "2026-04-28T15:41:56.649Z",
"details": "Weather is perfect (75°F, sunny)! Call the guys and book a tee time.",
"details_html": "<div class=\"trix-content\">\n Weather is perfect (75°F, sunny)! Call the guys and book a tee time.\n</div>\n",
"due": false,
"active": true
}
params
{"title":"Schedule a round of golf with buddies","remind_at":"2026-04-28T17:00:00Z","importance":"medium","time_estimate_minutes":15,"details":"Weather is perfect (75°F, sunny)! Call the guys and book a tee time.","tool":{"title":"Schedule a round of golf with buddies","remind_at":"2026-04-28T17:00:…
{
"title": "Schedule a round of golf with buddies",
"remind_at": "2026-04-28T17:00:00Z",
"importance": "medium",
"time_estimate_minutes": 15,
"details": "Weather is perfect (75°F, sunny)! Call the guys and book a tee time.",
"tool": {
"title": "Schedule a round of golf with buddies",
"remind_at": "2026-04-28T17:00:00Z",
"importance": "medium",
"time_estimate_minutes": 15,
"details": "Weather is perfect (75°F, sunny)! Call the guys and book a tee time."
}
}
error: ActionController::BadRequest: importance must be one of: low, normal, high
Developer quick start copy/paste Full API docs →
Replace values as needed, then run in your shell.
export TOOL_API_TOKEN="replace-with-your-token"
export BASE_URL="https://llmtest.tools"
# 1) Create reminder
curl -X POST "$BASE_URL/api/v1/tools/create_reminder" \
-H "Authorization: Bearer $TOOL_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"title": "Check model output quality",
"remind_at": "2026-04-24T17:00:00Z",
"importance": "high",
"time_estimate_minutes": 20,
"details": "Compare responses across 3 model configs."
}'
# 2) Get weather (address, city, zip all work)
curl -X POST "$BASE_URL/api/v1/tools/get_weather" \
-H "Authorization: Bearer $TOOL_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"address": "10001"
}'
# 3) Scrape and parse URL
curl -X POST "$BASE_URL/api/v1/tools/scrape_url" \
-H "Authorization: Bearer $TOOL_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"url": "https://llmtest.tools/docs",
"max_chars": 4000
}'
# 4) List reminders
curl -H "Authorization: Bearer $TOOL_API_TOKEN" \
"$BASE_URL/api/v1/reminders?filter=active&limit=20"
# 5) Snooze a reminder (replace REMINDER_ID)
curl -X POST "$BASE_URL/api/v1/reminders/REMINDER_ID/snooze" \
-H "Authorization: Bearer $TOOL_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "minutes": 30 }'
# 6) Dismiss a reminder (replace REMINDER_ID)
curl -X POST "$BASE_URL/api/v1/reminders/REMINDER_ID/dismiss" \
-H "Authorization: Bearer $TOOL_API_TOKEN"