A practical reference for calling our AI tools directly — no SDK, just one POST endpoint and seventeen tool IDs.
JustNeeda is a freemium AI toolkit for indie founders — 17 small, focused tools that turn a one-line brief into a usable artifact (brand names, landing copy, ad sets, audits, pitch decks, and more). The currently public surface is a single HTTP endpoint: POST /api/free-generate. It runs the same tool catalog the UI uses, gated by a per-IP daily quota for anonymous callers and a per-email monthly quota once you identify yourself.
Send a JSON body. Get either a generation or a quota error. No auth header required for the free tier.
curl -X POST https://justneeda.com/api/free-generate \
-H "content-type: application/json" \
-d '{"toolId":"instant-brand-name","input":"<your brief>"}'toolId — required. One of the 17 IDs in the catalog below.input — required. Free-text brief describing what you need.email — optional. Unlocks the email-gated tier (3 full runs per tool per month).website_url — honeypot. Leave empty. Submissions with this field set are dropped as bot traffic.{
"tier": "anon" | "email" | "paid",
"output": "<generated markdown>",
"remaining": <number>,
"windowResetAt": "<ISO timestamp>",
"ctaToUpgrade": "<copy to show in your UI>"
}{
"error": "quota_exceeded",
"tier": "anon" | "email" | "paid",
"remaining": 0,
"windowResetAt": "<ISO timestamp>",
"requiresEmail": <boolean>,
"requiresPayment": <boolean>
}Every toolId the endpoint accepts. Price shown is the one-time unlock for unlimited paid runs.
| id | name | price | category |
|---|---|---|---|
| instant-email-subjects | Email Subject Line Pack | $19 | |
| instant-brand-name | Brand Name Generator | $29 | Strategy |
| instant-linkedin-bio | LinkedIn Bio Kit | $29 | Social |
| instant-website-copy | Website Copy Pack | $49 | Content |
| instant-ad-copy | Ad Copy Pack | $49 | Ads |
| instant-product-descriptions | Product Descriptions Pack | $49 | Content |
| instant-personas | Customer Persona Pack | $49 | Strategy |
| instant-cold-email | Cold Email Templates | $49 | |
| instant-keyword-research | Keyword Research Report | $49 | SEO |
| instant-website-audit | Website Audit | $79 | SEO |
| instant-seo-audit | SEO Audit | $79 | SEO |
| instant-competitor-spy | Competitor Spy Report | $79 | Strategy |
| instant-email-sequence | Email Welcome Sequence | $99 | |
| instant-google-ads | Google Ads Launch Pack | $99 | Ads |
| instant-social-pack | Social Media Content Pack | $99 | Social |
| instant-pitch-deck | Pitch Deck Outline | $99 | Strategy |
| instant-content-strategy | Content Strategy Plan | $99 | Content |
| instant-launch-plan | Product Hunt Launch Kit | $49 | Launch |
| instant-investor-update | Investor Update Template | $49 | Strategy |
| instant-onboarding-flow | SaaS Onboarding Flow | $79 | Strategy |
| instant-pricing-page | Pricing Strategy + Page Copy | $79 | Strategy |
| instant-changelog-pack | Changelog + Release Notes Pack | $29 | Content |
| instant-positioning-doc | Positioning + Messaging Doc | $79 | Strategy |
| instant-feature-spec | Feature Spec / PRD | $29 | Strategy |
| instant-objection-playbook | Sales Objection Playbook | $49 | Sales |
| instant-churn-winback | Churn Winback Sequence | $49 | |
| instant-faq-pack | FAQ + Support Macros Pack | $29 | Content |
| instant-financial-model | Startup Financial Model | $79 | Strategy |
| instant-hiring-brief | Hiring Brief + JD Pack | $49 | Strategy |
| instant-okr-doc | Quarterly OKR Doc | $29 | Strategy |
| instant-postmortem | Incident Postmortem Template | $29 | Strategy |
| instant-churn-diagnostic | Customer Churn Diagnostic | $79 | Strategy |
Q4 roadmap: per-account API keys you can generate from /account, each with its own monthly quota that decrements against your paid plan, plus optional webhooks that POST the generated artifact to a URL of your choosing as soon as it’s ready. Bearer token auth, scoped per key, rotatable. No SDK planned — the endpoint is small enough that a raw fetch is the entire integration.
Reply to [email protected] with your use case.