Dashboard
Active reminders 0
No active reminders yet. Ask your LLM to create one.
Recent tool calls last 3 View all →
No tool calls logged yet.
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"