Quick Actions
Sharing
Universal Links
All mini app links use the same format to navigate to specific paths within any mini app:
Universal-link format
https://world.org/mini-app?app_id={app_id}&path={path}
If a user clicks on your link and has World App installed, it will automatically open the mini app inside of World App to the specified path. Otherwise, it will direct them to the app store and prompt them to install World App.
Parameters:
- Name
app_id
- Type
- string
- Required
- REQUIRED
- Description
The
app_id
corresponding to the target mini app.
- Name
path
- Type
- string
- Description
URL encoded path to the specific feature inside the target mini app
Growth & Viral Sharing (Your App)
Create shareable invite links for viral growth and referrals:
function generateInviteLink(userId: string): string {
const baseUrl = 'https://world.org/mini-app'
const appId = 'your_app_id' // Your own app ID
const path = encodeURIComponent(`/invite?code=${userId}`)
return `${baseUrl}?app_id=${appId}&path=${path}`
}
Full viral growth guide: Sharing & Viral Growth
Quick Actions (Other Apps)
Link to specific features in other mini apps for cross-app functionality.
Benefits of Quick Actions:
- Leverage Expertise: Use other mini apps' specialized features
- Resource Optimization: Focus on your core functionality
- Community Growth: Cross-app integration creates co-marketing opportunities
How to create a Quick Action:
-
Create a Universal Link Schema with a custom path
Example:
https://world.org/mini-app?app_id=app_8e407cfbae7ae51c19b07faff837aeeb&path=%2Fswap
- Fill this form to get your quick action published in our docs.