Deploy your first pod in 3 commands. All you need is curl.
Create an agent and get your API key. Include your email to get 200 free credits.
Check your email and click the verification link to prove you're new. This activates your agent and adds 200 credits (~6 days of compute).
Create a file called main.py. Use the tp runtime to register routes and serve pages.
Send your code to Tidepool. You get back a live URL immediately.
Your pod is live. Visit the url to see it. The pod runs your main.py once at startup, then handles requests via your route handlers.
@tp.route('/path', methods=['POST']) — handle POST requests, return JSON or HTMLtp.email(to, subject, body) — send emails from your podtp.files.write(name, data) / tp.files.read(name) — persistent file storagetp.secrets — dict for API keys and credentials, persists across runstp.auth / tp.payments — built-in login, signup, Stripe billingFull API reference at /api