{"id":271,"date":"2024-09-18T11:40:00","date_gmt":"2024-09-18T15:40:00","guid":{"rendered":"https:\/\/www.xconvert.com\/blog\/?p=271"},"modified":"2024-09-17T23:44:21","modified_gmt":"2024-09-18T03:44:21","slug":"what-is-exif-data","status":"publish","type":"post","link":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data","title":{"rendered":"What is EXIF Data?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>EXIF<\/strong> (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This metadata contains valuable information about the image, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Camera settings<\/strong>: aperture, shutter speed, ISO, focal length, etc.<\/li>\n\n\n\n<li><strong>Date and time<\/strong>: when the image was captured.<\/li>\n\n\n\n<li><strong>Location data<\/strong>: GPS coordinates, if the camera had GPS enabled.<\/li>\n\n\n\n<li><strong>Device information<\/strong>: camera make and model.<\/li>\n\n\n\n<li><strong>Image resolution<\/strong>: height, width, orientation, and other technical details.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">EXIF data provides insights into how an image was captured, which can be useful for photographers, developers, and investigators.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Which File Types Contain EXIF Data?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">EXIF data is commonly found in the following file types:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>JPEG (.jpg, .jpeg)<\/strong>: The most common file type that includes EXIF data.<\/li>\n\n\n\n<li><strong>TIFF (.tif, .tiff)<\/strong>: Often used in professional photography.<\/li>\n\n\n\n<li><strong>RAW formats<\/strong>: Some camera manufacturers embed EXIF data in their RAW image formats, such as:<\/li>\n\n\n\n<li>Canon (.cr2)<\/li>\n\n\n\n<li>Nikon (.nef)<\/li>\n\n\n\n<li>Sony (.arw)<\/li>\n\n\n\n<li><strong>PNG (.png)<\/strong>: While the PNG format supports metadata, it typically does not store EXIF data.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Note: EXIF data is not included in formats like <strong>GIF<\/strong> or <strong>BMP<\/strong>, and sometimes it&#8217;s stripped from images when processed through certain software, particularly when uploading to websites that compress or optimize images.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Extract EXIF Data from an Image<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There are various ways to extract EXIF data from images, using both built-in tools and third-party libraries.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">1. <strong>Using Built-in Tools (Windows and macOS)<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Right-click the image file.<\/li>\n\n\n\n<li>Select <strong>Properties<\/strong>.<\/li>\n\n\n\n<li>Go to the <strong>Details<\/strong> tab. Here, you&#8217;ll see the EXIF data, such as camera model, resolution, date, and GPS data (if available).<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Right-click the image and choose <strong>Get Info<\/strong>.<\/li>\n\n\n\n<li>In the Info panel, look for details about the image under <strong>More Info<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">2. <strong>Using Online Tools<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can extract EXIF data from images using free online tools like:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/exif.tools\/\">exif.tools<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/exifinfo.org\/\">exifinfo.org<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Simply upload the image, and the website will display its EXIF data.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. <strong>Using Python Libraries (e.g., Pillow)<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can extract EXIF data programmatically using Python\u2019s <code>Pillow<\/code> library:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"python\" class=\"language-python line-numbers\">from PIL import Image\nfrom PIL.ExifTags import TAGS\n\n# Load the image\nimage = Image.open(\"example.jpg\")\n\n# Extract EXIF data\nexif_data = image._getexif()\n\n# Convert EXIF data into human-readable form\nif exif_data:\n    for tag, value in exif_data.items():\n        tag_name = TAGS.get(tag, tag)\n        print(f\"{tag_name}: {value}\")\nelse:\n    print(\"No EXIF data found\")<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">4. <strong>Using EXIF Tools (Linux, macOS)<\/strong><\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">For command-line users, the <code>exiftool<\/code> utility is a powerful way to extract EXIF data.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Install <code>exiftool<\/code> (on Linux or macOS):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash line-numbers\">brew install exiftool  # macOS\nsudo apt install libimage-exiftool-perl  # Linux<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To extract EXIF data from an image:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash line-numbers\">exiftool image.jpg<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This will display all available metadata, including camera settings, GPS data, and timestamps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">EXIF data offers detailed insights into how and when an image was captured, as well as information about the device used. It&#8217;s embedded in file formats like JPEG, TIFF, and certain RAW formats.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Featured photo by <a href=\"https:\/\/unsplash.com\/@yohanmarion?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash\">Yohan Marion<\/a> on <a href=\"https:\/\/unsplash.com\/photos\/a-red-and-white-sign-on-top-of-a-building-6NflM91LGJo?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash\">Unsplash<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily&#8230;<\/p>\n","protected":false},"author":1,"featured_media":272,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,5,14],"tags":[39,38,41,40,42],"class_list":["post-271","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-security","category-how-to-guides","category-tools","tag-data-extraction","tag-exif","tag-exif-data","tag-image-data","tag-meta-data"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is EXIF Data?<\/title>\n<meta name=\"description\" content=\"EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.xconvert.com\/blog\/what-is-exif-data\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is EXIF Data?\" \/>\n<meta property=\"og:description\" content=\"EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xconvert.com\/blog\/what-is-exif-data\" \/>\n<meta property=\"og:site_name\" content=\"XConvert Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/xconvertcom\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-18T15:40:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1707\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xconvert_com\" \/>\n<meta name=\"twitter:site\" content=\"@xconvert_com\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#\\\/schema\\\/person\\\/953c746f3b5603e610ab7d739d85df67\"},\"headline\":\"What is EXIF Data?\",\"datePublished\":\"2024-09-18T15:40:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data\"},\"wordCount\":412,\"image\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg\",\"keywords\":[\"data extraction\",\"exif\",\"exif data\",\"image data\",\"meta data\"],\"articleSection\":[\"Computer Security\",\"How To Guides\",\"Tools\"],\"inLanguage\":\"en-CA\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data\",\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data\",\"name\":\"What is EXIF Data?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg\",\"datePublished\":\"2024-09-18T15:40:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#\\\/schema\\\/person\\\/953c746f3b5603e610ab7d739d85df67\"},\"description\":\"EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#breadcrumb\"},\"inLanguage\":\"en-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#primaryimage\",\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg\",\"width\":2560,\"height\":1707,\"caption\":\"What is EXIF Data?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/what-is-exif-data#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.xconvert.com\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is EXIF Data?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/\",\"name\":\"XConvert Blog\",\"description\":\"Blog for XConvert file converter\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CA\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#\\\/schema\\\/person\\\/953c746f3b5603e610ab7d739d85df67\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/author\\\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is EXIF Data?","description":"EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This","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:\/\/www.xconvert.com\/blog\/what-is-exif-data","og_locale":"en_US","og_type":"article","og_title":"What is EXIF Data?","og_description":"EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This","og_url":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data","og_site_name":"XConvert Blog","article_publisher":"https:\/\/www.facebook.com\/xconvertcom","article_published_time":"2024-09-18T15:40:00+00:00","og_image":[{"width":2560,"height":1707,"url":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@xconvert_com","twitter_site":"@xconvert_com","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#article","isPartOf":{"@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data"},"author":{"name":"admin","@id":"https:\/\/www.xconvert.com\/blog\/#\/schema\/person\/953c746f3b5603e610ab7d739d85df67"},"headline":"What is EXIF Data?","datePublished":"2024-09-18T15:40:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data"},"wordCount":412,"image":{"@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#primaryimage"},"thumbnailUrl":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg","keywords":["data extraction","exif","exif data","image data","meta data"],"articleSection":["Computer Security","How To Guides","Tools"],"inLanguage":"en-CA"},{"@type":"WebPage","@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data","url":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data","name":"What is EXIF Data?","isPartOf":{"@id":"https:\/\/www.xconvert.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#primaryimage"},"image":{"@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#primaryimage"},"thumbnailUrl":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg","datePublished":"2024-09-18T15:40:00+00:00","author":{"@id":"https:\/\/www.xconvert.com\/blog\/#\/schema\/person\/953c746f3b5603e610ab7d739d85df67"},"description":"EXIF (Exchangeable Image File Format) data is metadata embedded in images and audio files, primarily captured by digital cameras and smartphones. This","breadcrumb":{"@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#breadcrumb"},"inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xconvert.com\/blog\/what-is-exif-data"]}]},{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#primaryimage","url":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg","contentUrl":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/yohan-marion-6NflM91LGJo-unsplash-scaled.jpg","width":2560,"height":1707,"caption":"What is EXIF Data?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.xconvert.com\/blog\/what-is-exif-data#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.xconvert.com\/blog"},{"@type":"ListItem","position":2,"name":"What is EXIF Data?"}]},{"@type":"WebSite","@id":"https:\/\/www.xconvert.com\/blog\/#website","url":"https:\/\/www.xconvert.com\/blog\/","name":"XConvert Blog","description":"Blog for XConvert file converter","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xconvert.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CA"},{"@type":"Person","@id":"https:\/\/www.xconvert.com\/blog\/#\/schema\/person\/953c746f3b5603e610ab7d739d85df67","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/secure.gravatar.com\/avatar\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.xconvert.com\/blog\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts\/271","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/comments?post=271"}],"version-history":[{"count":1,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts\/271\/revisions"}],"predecessor-version":[{"id":273,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts\/271\/revisions\/273"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/media\/272"}],"wp:attachment":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/media?parent=271"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/categories?post=271"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/tags?post=271"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}