| Type | Supported Formats | Supported Types | |
|---|---|---|---|
| Library Template | png jpg jpeg webp | base64 url binary |
Automate this template using integrations
You can generate App Store Screenshot renders using Rest API and Orshot SDKs
await fetch("https://api.orshot.com/v1/generate/images", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer <ORSHOT_API_KEY>",
},
body: JSON.stringify({
"templateId": "app-store-screenshot-simple",
"response": {
"format": "png",
"type": "base64"
"scale": 1
},
"modifications": {
"size": "",
"title": "Meet Acme, the only todo app you'll ever need",
"screenshotImage": "https://pika.style/templates/demo-images/iphone-2.png",
"textColor": "#111",
"backgroundColor": "#fff"
}
}),
});You can customize the template using following modifications
| Key | Description | Type |
|---|---|---|
| size | Select the App Store Screenshot size variant | select |
| title | Title for first screenshot(clips after 2nd line) | string |
| screenshotImage | A URL or base64 string of iOS screenshot | string |
| textColor | A CSS color value for the title text | string |
| backgroundColor | A CSS color value for the background | string |