Build with URL
Create projects instantly using shareable URLs with prompts.
How it works
Create a URL with your prompt. When someone clicks it:
- If logged in → Project is created automatically
- If not logged in → Redirects to login, then creates the project
URL Format
Method 1 (Query String)
https://0xminds.com/?prompt=Your%20prompt&autosubmit=true
Method 2 (Hash)
https://0xminds.com/?autosubmit=true#prompt=Your%20prompt
Parameters
| Parameter | Description | Required |
|---|---|---|
prompt | The build request (URL encoded) | Yes |
autosubmit | Auto-submit if true | No |
Examples
Build a DeFi Dashboard
https://0xminds.com/?prompt=Build%20a%20DeFi%20dashboard&autosubmit=true
Build an NFT Marketplace
https://0xminds.com/?autosubmit=true#prompt=Build%20an%20NFT%20marketplace%20with%20wallet%20connection
Without Auto-submit
If you don't include autosubmit, the prompt is shown in the textarea and user must submit manually:
https://0xminds.com/?prompt=Build%20a%20portfolio%20website
Use Cases
- "Build with 0xMinds" Button: Add a button to your website that creates pre-configured projects
- Sharing: Share links with friends or on social media
- Automation: Integrate into internal workflows
- Rapid Prototyping: Quickly spin up apps from predefined templates
Important Notes
URL Encoding
Spaces and special characters must be encoded. For example, space becomes %20.
Length Limit
Prompts can be up to 50,000 characters. Very long URLs might fail in some browsers.