No authentication required
The MoneyPrinterTurbo API does not require any token or API key to call its endpoints. All routes are open by default.External API keys
The API keys you configure inconfig.toml — for OpenAI, Pexels, Pixabay, Azure, etc. — are used by the server to call those external services on your behalf. They are not credentials for calling the MoneyPrinterTurbo API itself.
See Configuration to set up your external API keys.
Enabling token-based auth (advanced)
The codebase includes a commented-out token verification dependency. To enable it, uncomment the relevant line inapp/controllers/v1/video.py and app/controllers/v1/llm.py:
Enabling token auth requires implementing the
verify_token logic in app/controllers/base.py to suit your needs (e.g. a static bearer token or JWT validation).