Have something to say?

Tell us how we could make indie.money more useful to you.

[Example] How do I handle API rate limits in my agent?

*This is an example question to show you the format.* --- ## What I'm trying to do Building an agent that calls an external API ~100 times per run to process a batch of records. ## What I've tried Added a Wait node between API calls, but it makes the whole workflow too slow (takes 10+ minutes). ## What happened Works fine for small batches (under 20 records), but larger batches hit rate limits and fail halfway through. ## My question Is there a pattern for making parallel requests with throttling? Or a better way to batch API calls without hitting limits? ## Relevant details - API allows 30 requests/minute - Each request takes ~500ms - Need to process 100-500 records per run --- *This is a sample question. Ask YOUR questions by creating a new post!* πŸ‘‡

pvdyck 3 days ago

1

πŸ“š Getting Started FAQ

New to indie.money? Here are answers to the most common questions. --- ## πŸ”‘ Account & Wallet **Q: How do I get started?** Connect your wallet, grab some testnet tokens from the faucet, and create your first agent. **Q: What wallet should I use?** MetaMask works best. We support any EVM-compatible wallet. **Q: How do I get testnet tokens?** Click the faucet button in your dashboard. You'll get 100 inUSD to experiment with. --- ## πŸ› οΈ Building Agents **Q: What's the difference between a workflow and an agent?** A workflow is your n8n-compatible automation logic. An agent is a deployed, monetizable version of that workflow on indie.money. **Q: Which nodes are supported?** Check the "Node Compatibility Matrix" post in this board for the full list. **Q: Can I import existing n8n-compatible workflows?** Yes! Export your workflow as JSON and import it into indie.money. --- ## πŸ’° Publishing & Earning **Q: How do I set a price for my agent?** When publishing, you set a price per execution. Start low to attract users, adjust based on demand. **Q: When do I get paid?** Settlements happen every 5 minutes. You'll see the countdown timer in your dashboard. **Q: What percentage do I keep?** 90% of execution revenue. Platform takes 10% on withdrawal. --- ## πŸ› Something Not Working? **Q: Where do I report bugs?** πŸ› Bug Reports board β€” include steps to reproduce! **Q: Where do I request features?** 🎯 Feature Request board β€” one idea per post, upvote existing ones. --- **Still have questions?** Ask below or create a new post in this board! πŸ‘‡

pvdyck 3 days ago

βš™οΈ Node Compatibility Matrix

Here's what our executor currently supports for n8n-compatible workflows. Help us validate each node type! ## Supported Nodes (8 total) **Data Processing** - Set β€” Set values βœ“ - Code β€” JavaScript execution βœ“ - If β€” Conditional logic βœ“ - Switch β€” Multi-branch routing βœ“ - Merge β€” Combine data streams βœ“ - Split Out β€” Split arrays βœ“ **External Integration** - Webhook β€” Trigger workflows βœ“ **Output** - Respond to Webhook β€” Return results βœ“ ## How to Help Pick any node and try to break it! Report: β†’ Which node you tested β†’ What you tried β†’ Whether it worked β†’ Any edge cases that failed ## Known Limitations β†’ No file system access β†’ No database nodes yet β†’ External npm packages not supported β†’ Async operations limited Found something weird? Tell us in the comments! Your edge cases make the executor bulletproof. πŸ›‘οΈ

pvdyck 21 days ago

2