generate_embed_metadata
Generate social media embed metadata for Base mini apps to improve sharing visibility and engagement across platforms.
Instructions
Generate embed metadata for social sharing of your mini app.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_name | Yes | Name of your app | |
app_url | Yes | URL of your app | |
button_text | No | Button text (max 32 chars) | |
image_url | No | Preview image URL (3:2 aspect ratio) |
Input Schema (JSON Schema)
{
"properties": {
"app_name": {
"description": "Name of your app",
"type": "string"
},
"app_url": {
"description": "URL of your app",
"type": "string"
},
"button_text": {
"description": "Button text (max 32 chars)",
"type": "string"
},
"image_url": {
"description": "Preview image URL (3:2 aspect ratio)",
"type": "string"
}
},
"required": [
"app_name",
"app_url"
],
"type": "object"
}