> For the complete documentation index, see [llms.txt](https://developer.konverse.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.konverse.ai/platform/embedded-functions/send-cards.md).

# Send Cards

Our platform allows to send up-to 10 cards with each card having up-to 3 buttons.&#x20;

```
ctx.sendCards({
	"title": "Card1",
	"subtitle": "Subtitle1",
	"image": "https://path-to-image1",
	"buttons": [{
			"type": "postback",
			"jumpTo": "<Story Label>",
			"title": "Button 1 title"
		},
		{
			"type": "url",
			"url": "https://external-redirec-link",
			"title": "URL BUTTON"
		}, {
			"type": "postback",
			"jumpTo": "<Story Label>",
			"title": "Button 3 Postback with variables",
			"variables": [{
				"key": "#variableName",
				"variableType": "variableType",
				"value": "value"
			}]
		}
	]
})
```
