Settings & Account
Connected Apps
Connect Claude, ChatGPT, or other AI assistants so you can log activities by chatting — Homeschool Fox stays your system of record.
Last updated August 29, 2026
Connect an AI assistant you already use — Claude, ChatGPT, or any tool that supports custom connectors — and log homeschool activities by chatting. Say "log 30 minutes of math with Emma" mid-conversation and it lands in Homeschool Fox automatically.
Connected apps require an active subscription or trial.
Two Ways to Connect
- Sign in to connect — assistants that support Homeschool Fox directly (or any custom connector you add by URL) can connect with a sign-in prompt: click Connect, log in to Homeschool Fox, approve, done. No keys to copy. Manage or disconnect these any time from Settings → Connected apps → Manage connected assistants.
- Personal API key — for tools that ask for a key or URL instead, generate one below.
Getting Your Connector URL
- Go to Settings
- Find Connected apps
- Click Generate API key
- Copy the Connector URL (and the API key, if you plan to use the API directly)
Copy them right away — for your security they're shown only once. If you miss them, click Regenerate for a fresh set.
Adding to Claude
- Open Claude's Settings → Connectors
- Click Add custom connector
- Paste your Connector URL
- Save — Homeschool Fox now appears in Claude's connector list
Adding to ChatGPT
- Open ChatGPT's Settings → Connectors
- Enable Developer mode if custom connectors aren't shown (availability depends on your ChatGPT plan)
- Add a new connector and paste your Connector URL
- Save
What You Can Do
Once connected, your assistant can:
- Log activities — "Log an hour of reading with both kids this morning"
- Set up repeating schedules — "Math every Monday and Wednesday at 9 through June"
- Check what's logged — "What did we log this week?"
- Report progress — "How are we doing on hours this school year?"
- Look up your students and subjects — so it logs against the right names
- Add a subject — when you confirm you want one that doesn't exist yet
A few things to know:
- One subject per activity. "We did math and reading" becomes two activities — just like the in-app AI parser.
- Name your students. With more than one student on the account, say who the activity was for. Single-student accounts fill in automatically.
- Subjects come from your account. If the assistant names a subject you don't have, it's told which subjects are available so it can correct itself — and it can create the subject for you if you ask.
- No duplicates. If your assistant retries a request, Homeschool Fox recognizes the repeat and won't log the same activity twice.
Shared Accounts
Each person generates their own key from their own login. A co-parent with full access logs into the shared account like normal; view-only members can read activities and progress but can't log.
Keeping Your Key Safe
Treat the Connector URL and API key like a password — anyone who has them can read and log activities on your account.
- Regenerate issues a new key and immediately revokes the old one. Apps using the old key stop working until you give them the new URL.
- Revoke shuts off access entirely.
For Developers
The same key works as a Bearer token against the REST API:
POST /api/v1/activities— log an activity (subjects and students by name or id; supports recurrence fields)GET /api/v1/activities— recent activities, withfrom/todate filtersGET /api/v1/studentsandGET /api/v1/subjects— what you can log againstPOST /api/v1/subjects— add a subject (returns the existing one on a name match)GET /api/v1/progress— per-student hours and attendance vs current school-year goals
Send it as an Authorization: Bearer <key> header. Requests are rate-limited per key.