FAQ
Do I need auth tokens?
Section titled “Do I need auth tokens?”No. Public endpoints are read-only and username-based.
Can I use this as a general partner API?
Section titled “Can I use this as a general partner API?”Not currently. This API is intentionally small and geared toward personal/friends projects, widgets, and automations.
Why do I get CORS errors in the browser?
Section titled “Why do I get CORS errors in the browser?”Backend CORS checks CORS_ORIGIN allow-list. If your site origin is not listed, browser calls can fail.
Use server-side requests (or update backend CORS config) when integrating from external origins.
What is the difference between recent and activity?
Section titled “What is the difference between recent and activity?”They return the same feed item schema. The difference is limit defaults/max:
recent: default10, max20activity: default30, max100
Are private lists exposed?
Section titled “Are private lists exposed?”No. /lists filters to isPublic = true.
Are likes and watchlist movie-only?
Section titled “Are likes and watchlist movie-only?”No. Both can include movie and tv items.
Is pagination supported?
Section titled “Is pagination supported?”Not today. Current public endpoints support limit only (where applicable).
Are response dates strings or numbers?
Section titled “Are response dates strings or numbers?”They are serialized JSON date strings (ISO-like timestamps for datetime fields).