{"id":35812,"date":"2024-10-03T09:00:00","date_gmt":"2024-10-03T16:00:00","guid":{"rendered":"https:\/\/cloudinary.com\/blog\/?p=35812"},"modified":"2024-10-23T17:20:10","modified_gmt":"2024-10-24T00:20:10","slug":"astro-cloudinary-image-video-api","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api","title":{"rendered":"Astro Cloudinary: The Image and Video API for Astro"},"content":{"rendered":"\n<p>Astro has become a major player in the JavaScript ecosystem, giving developers the tools they need to build fast, content-driven websites. With it comes a vast collection of extensions and integrations, to build those sites with the tools you love.<\/p>\n\n\n\n<p>And now, we&#8217;re adding an SDK to help you build performance and visual experiences on the web with Cloudinary.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Astro Cloudinary<\/h2>\n\n\n\n<p><a href=\"https:\/\/astro.cloudinary.dev\/\">Astro Cloudinary<\/a> brings first-class support for Cloudinary in the Astro ecosystem, allowing you to easily optimize and transform images and videos, drop in the Cloudinary Upload Widget, generate social media cards, and even <a href=\"https:\/\/cloudinary.com\/blog\/source-cloudinary-assets-astro-content-layer\">load assets with Astro Collections<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/colbycloud\/image\/upload\/f_auto,q_auto\/v1\/raycast-uploads\/rtebmmyinaautvmdzp0q\" alt=\"CldImage changing background with text\"\/><\/figure>\n\n\n<div class='c-callout  c-callout--inline-title c-callout--note'><strong class='c-callout__title'>Note:<\/strong> <p>Astro Cloudinary is a community library supported by the Cloudinary Developer Experience team.<\/p>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s Inside?<\/h2>\n\n\n\n<p>The SDK brings the Cloudinary features you love, including transforming images using the <a href=\"https:\/\/astro.cloudinary.dev\/cldimage\/basic-usage\"><code>CldImage<\/code><\/a> component with dynamic cropping and resizing, background removal, generative AI, and all of the filters and effects.<\/p>\n\n\n\n<p>Video playback and the <a href=\"https:\/\/astro.cloudinary.dev\/cldvideoplayer\/basic-usage\"><code>CldVideoPlayer<\/code><\/a> component uses the Cloudinary Video Player, ensuring you can give your visitors a delightful embedded video experience.<\/p>\n\n\n\n<p>The Cloudinary Upload widget can be easily dropped in with the <a href=\"https:\/\/astro.cloudinary.dev\/clduploadwidget\/basic-usage\"><code>CldUploadWidget<\/code><\/a> component, giving you easy access to <a href=\"https:\/\/cloudinary.com\/documentation\/user_generated_content\">user-generated content<\/a> (UGC).<\/p>\n\n\n\n<p>Social media cards, which are critical for social engagement, can be dynamically generated with the <a href=\"https:\/\/astro.cloudinary.dev\/getcldogimageurl\/basic-usage\"><code>cldOgImageUrl<\/code><\/a> helper.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/colbycloud\/image\/upload\/f_auto,q_auto\/v1\/raycast-uploads\/mqyr4cukuorkbsd3lpeb\" alt=\"Example social media card with getCldOgImageUrl\"\/><\/figure>\n\n\n\n<p>And your media library can be loaded as an Astro Collection with the <a href=\"https:\/\/astro.cloudinary.dev\/cldassetsloader\/basic-usage\"><code>cldAssetsLoader<\/code><\/a> loader.<\/p>\n\n\n\n<p>Astro Cloudinary gives you everything you need to build great experiences for your visitors.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using Astro Cloudinary<\/h2>\n\n\n\n<p>Getting started with Astro Cloudinary is easy.<\/p>\n\n\n\n<p>First, install the package in your Astro project:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml shcb-wrap-lines\">```\n\nnpm install astro-cloudinary\n\n```\n\nAdd your Cloudinary cloud name as an environment variable inside of .env:\n\n```\n\nPUBLIC_CLOUDINARY_CLOUD_NAME=\"<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">Your<\/span> <span class=\"hljs-attr\">Cloud<\/span> <span class=\"hljs-attr\">Name<\/span>&gt;<\/span>\"\n\n```\n\nIf using the Upload Widget, you'll also need your API Key and Secret:\n\n```\n\nPUBLIC_CLOUDINARY_API_KEY=\"<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">Your<\/span> <span class=\"hljs-attr\">API<\/span> <span class=\"hljs-attr\">Key<\/span>&gt;<\/span>\"\n\nCLOUDINARY_API_SECRET=\"<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">Your<\/span> <span class=\"hljs-attr\">API<\/span> <span class=\"hljs-attr\">Secret<\/span>&gt;<\/span>\"\n\n```<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>From there, you can use any of the components, like <code>CldImage<\/code>, to render and transform images on your page.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml shcb-wrap-lines\">```\n\n---\n\nimport { CldImage } from 'astro-cloudinary';\n\n---\n\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">CldImage<\/span>\n\n\u00a0\u00a0<span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"cld-sample-5\"<\/span>\n\n\u00a0\u00a0<span class=\"hljs-attr\">width<\/span>=<span class=\"hljs-string\">\"800\"<\/span>\n\n\u00a0\u00a0<span class=\"hljs-attr\">height<\/span>=<span class=\"hljs-string\">\"600\"<\/span>\n\n\u00a0\u00a0<span class=\"hljs-attr\">replaceBackground<\/span>=<span class=\"hljs-string\">\"cartoon outer space\"<\/span>\n\n\u00a0\u00a0<span class=\"hljs-attr\">alt<\/span>=<span class=\"hljs-string\">\"Shoe that is out of this world!\"<\/span>\n\n\u00a0\u00a0<span class=\"hljs-attr\">sizes<\/span>=<span class=\"hljs-string\">\"100vw\"<\/span>\n\n\/&gt;<\/span>\n\n```<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/astro-cloudinary\/image\/upload\/e_gen_background_replace:prompt_cartoon%20outer%20space\/c_fill,w_1600\/f_auto\/q_auto\/v1\/cld-sample-5?_a=BBGOphXg0\" alt=\"Image of shoe with background replace with cartoon outer space prompt\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Learn More and Get Started<\/h2>\n\n\n\n<p>To learn more about what components, APIs, and features are available, head over to the<a href=\"https:\/\/astro.cloudinary.dev\/\"> Astro Cloudinary Docs<\/a>. For bugs, issues, or feature requests, find <a href=\"https:\/\/github.com\/cloudinary-community\/astro-cloudinary\">Astro Cloudinary on GitHub<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Astro has become a major player in the JavaScript ecosystem, giving developers the tools they need to build fast, content-driven websites. With it comes a vast collection of extensions and integrations, to build those sites with the tools you love. And now, we&#8217;re adding an SDK to help you build performance and visual experiences on [&hellip;]<\/p>\n","protected":false},"author":87,"featured_media":35843,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[165,263,305],"class_list":["post-35812","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-image-transformation","tag-sdk","tag-video-api"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Introducing Astro Cloudinary: The Image and Video API for Astro<\/title>\n<meta name=\"description\" content=\"This SDK brings the Cloudinary features you love: image transformations using the CldImage component with dynamic cropping and resizing, GenAI, and more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Astro Cloudinary: The Image and Video API for Astro\" \/>\n<meta property=\"og:description\" content=\"This SDK brings the Cloudinary features you love: image transformations using the CldImage component with dynamic cropping and resizing, GenAI, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-03T16:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-24T00:20:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog-jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1100\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"melindapham\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\"},\"author\":{\"name\":\"melindapham\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9\"},\"headline\":\"Astro Cloudinary: The Image and Video API for Astro\",\"datePublished\":\"2024-10-03T16:00:00+00:00\",\"dateModified\":\"2024-10-24T00:20:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\"},\"wordCount\":297,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA\",\"keywords\":[\"Image Transformation\",\"SDK\",\"Video API\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2024\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\",\"url\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\",\"name\":\"Introducing Astro Cloudinary: The Image and Video API for Astro\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA\",\"datePublished\":\"2024-10-03T16:00:00+00:00\",\"dateModified\":\"2024-10-24T00:20:10+00:00\",\"description\":\"This SDK brings the Cloudinary features you love: image transformations using the CldImage component with dynamic cropping and resizing, GenAI, and more.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA\",\"width\":2000,\"height\":1100},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Astro Cloudinary: The Image and Video API for Astro\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9\",\"name\":\"melindapham\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g\",\"caption\":\"melindapham\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Introducing Astro Cloudinary: The Image and Video API for Astro","description":"This SDK brings the Cloudinary features you love: image transformations using the CldImage component with dynamic cropping and resizing, GenAI, and more.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api","og_locale":"en_US","og_type":"article","og_title":"Astro Cloudinary: The Image and Video API for Astro","og_description":"This SDK brings the Cloudinary features you love: image transformations using the CldImage component with dynamic cropping and resizing, GenAI, and more.","og_url":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api","og_site_name":"Cloudinary Blog","article_published_time":"2024-10-03T16:00:00+00:00","article_modified_time":"2024-10-24T00:20:10+00:00","og_image":[{"width":2000,"height":1100,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog-jpg?_i=AA","type":"image\/jpeg"}],"author":"melindapham","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api"},"author":{"name":"melindapham","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9"},"headline":"Astro Cloudinary: The Image and Video API for Astro","datePublished":"2024-10-03T16:00:00+00:00","dateModified":"2024-10-24T00:20:10+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api"},"wordCount":297,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA","keywords":["Image Transformation","SDK","Video API"],"inLanguage":"en-US","copyrightYear":"2024","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api","url":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api","name":"Introducing Astro Cloudinary: The Image and Video API for Astro","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA","datePublished":"2024-10-03T16:00:00+00:00","dateModified":"2024-10-24T00:20:10+00:00","description":"This SDK brings the Cloudinary features you love: image transformations using the CldImage component with dynamic cropping and resizing, GenAI, and more.","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA","width":2000,"height":1100},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/astro-cloudinary-image-video-api#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Astro Cloudinary: The Image and Video API for Astro"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9","name":"melindapham","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g","caption":"melindapham"}}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1727457919\/Cloudinary_Astro_launch-blog\/Cloudinary_Astro_launch-blog.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/35812","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/87"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=35812"}],"version-history":[{"count":4,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/35812\/revisions"}],"predecessor-version":[{"id":36169,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/35812\/revisions\/36169"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/35843"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=35812"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=35812"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=35812"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}