Tool tree
foto foto. Turn your photos into a printed photo book
get_catalogAnswer
Lists the photo book types foto foto prints, the countries it ships to and the photo limits. Returns JSON with products (id, name, price), shippingCountries and limits. Free, changes nothing.
View tool JSON
{
"name": "get_catalog",
"kind": "answer",
"impl": "imperative",
"description": "Lists the photo book types foto foto prints, the countries it ships to and the photo limits. Returns JSON with products (id, name, price), shippingCountries and limits. Free, changes nothing.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}create_photo_bookSensitive Action
Makes a photo book from public image URLs, or from a public iCloud Shared Album link, in the given order, and opens it in this tab. Returns JSON with bookId, previewUrl, claimUrl and photoCount. Making and viewing the book is free and needs no account; claimUrl saves it with an email address.
View tool JSON
{
"name": "create_photo_book",
"kind": "transact",
"impl": "imperative",
"description": "Makes a photo book from public image URLs, or from a public iCloud Shared Album link, in the given order, and opens it in this tab. Returns JSON with bookId, previewUrl, claimUrl and photoCount. Making and viewing the book is free and needs no account; claimUrl saves it with an email address.",
"inputSchema": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Title printed on the cover"
},
"photoUrls": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 100,
"description": "Public https image URLs, in book order"
},
"sharedAlbumUrl": {
"type": "string",
"description": "Public iCloud Shared Album link (https://www.icloud.com/sharedalbum/#TOKEN), used instead of photoUrls"
}
},
"required": [
"title"
],
"additionalProperties": false
},
"page": "/"
}