{"id":1574,"date":"2022-09-24T12:06:54","date_gmt":"2022-09-24T06:36:54","guid":{"rendered":"https:\/\/myfreeonlinetools.com\/blog\/?p=1574"},"modified":"2022-09-24T12:09:23","modified_gmt":"2022-09-24T06:39:23","slug":"how-to-export-databases-in-mysql-or-mariadb","status":"publish","type":"post","link":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/","title":{"rendered":"How To Export Databases in MySQL or MariaDB"},"content":{"rendered":"<h2>Export Databases in MySQL or MariaDB<\/h2>\n<p><span data-preserver-spaces=\"true\">Export databases is a basic task for all web developers when using MySQL or MariaDB. <\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Use MySQL dump for database backup its require for migration or server exchange.\u00a0<\/span><\/p>\n<h3><span data-preserver-spaces=\"true\">Use my mysqldump for export single, multiple or all databses.\u00a0<\/span><\/h3>\n<p><span data-preserver-spaces=\"true\">Command for MySql or MariaDB Database export.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Nginx server database export without login to SQL.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Export MariaDB or MySql Database<\/span><\/p>\n<h3><span data-preserver-spaces=\"true\">Export single database<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u USERNAME -p PASSWORD DBNAME &gt; DBBACKUP.sql<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">for store database in root\u00a0<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u USERNAME -p PASSWORD DBNAME &gt; ~\/DBBACKUP.sql<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">Export multiple database<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u USERNAME -p PASSWORD --databases DB1 DB2 DB3.. &gt;DBBACKUP.sql<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">for store database in root<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u USERNAME -p PASSWORD --databases DB1 DB2 DB3.. &gt; ~\/DBBACKUP.sql<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">for store database in root<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u USERNAME -p PASSWORD --all-databases &gt; ~\/ALLDBBACKUP.sql<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">Exports only tables from selected database.<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u username -p database_name tablename_1 tablename_2 &gt; name_sql_file.sql<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">for store database in root<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u username -p database_name tablename_1 tablename_2 &gt; ~\/name_sql_file.sql<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">mysqldump -u [user name] \u2013p [password] [options] [database_name] [tablename] &gt; [dumpfilename.sql]<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">How to download MySql or MariaDB database in compress format<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysqldump -u root -ppassword wpdb | gzip &gt; wpdb_backup.sql.gz<\/span><\/pre>\n<p>&nbsp;<\/p>\n<h3><span data-preserver-spaces=\"true\">Expert database with login to your SQL Shell\u00a0<\/span><\/h3>\n<pre><span data-preserver-spaces=\"true\">mysql -u root -p;<\/span>\r\n<span data-preserver-spaces=\"true\">Import your dump sql file in your SQL<\/span>\r\n<span data-preserver-spaces=\"true\">source ~\/wordpress.sql<\/span><\/pre>\n<p>&nbsp;<\/p>\n<h3><strong><span data-preserver-spaces=\"true\">How to Use mysqldump Without Password?<\/span><\/strong><\/h3>\n<p><span data-preserver-spaces=\"true\">You have to create a file in your home directory with SQL credentials.\u00a0<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Use the given command to create a file.<\/span><\/p>\n<pre><strong><span data-preserver-spaces=\"true\">nano ~\/mysql.txt<\/span><\/strong><\/pre>\n<p><span data-preserver-spaces=\"true\">Now add your MySQL credentials as given below.<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\">[mysqldump]<\/span>\r\n<span data-preserver-spaces=\"true\">user=root<\/span>\r\n<span data-preserver-spaces=\"true\">password=password<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">Save and close the file and every time you can provide a file in place of credentials like in the code given below.<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\">mysqldump --defaults-file=~\/mysql.txt wpdb &gt; wpdb_backup.sql<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">Parameters Signifies<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">-u : MySQL username.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">-p : MySQL password.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">DBNAME : <\/span>The name of the database that you want to backup.<\/p>\n<p><span data-preserver-spaces=\"true\">DBBACKUP.sql <\/span><\/p>\n<p><span data-preserver-spaces=\"true\">The name of the backup file you want to generate.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">-h : Hostname<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">\u2013databases : Determine the database.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">-all-databases : Backup all databases.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">\u2013default-auth=plugin <\/span><\/p>\n<p><span data-preserver-spaces=\"true\">It is used to specify the client-side authentication plugin to use.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">\u2013compress : Enable compression in server\/client protocol.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">-P : Port number to use for MySQL connection.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Configuration<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Set the network buffer length (for large size files)<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\">set global net_buffer_length=1000000;<\/span>\r\n<span data-preserver-spaces=\"true\">Set the maximum allowed packet size<\/span>\r\n<span data-preserver-spaces=\"true\">set global max_allowed_packet=1000000000;<\/span>\r\n<span data-preserver-spaces=\"true\">To avoid delays or errors, disable the foreign key.<\/span>\r\n<span data-preserver-spaces=\"true\">SET foreign_key_checks = 0;<\/span>\r\n<span data-preserver-spaces=\"true\">SET UNIQUE_CHECKS = 0;<\/span>\r\n<span data-preserver-spaces=\"true\">SET AUTOCOMMIT = 0;<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">After done all don\u2019t forget to enable the foreign key<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\">SET foreign_key_checks = 1;<\/span>\r\n<span data-preserver-spaces=\"true\">SET UNIQUE_CHECKS = 1;<\/span>\r\n<span data-preserver-spaces=\"true\">SET AUTOCOMMIT = 1;<\/span><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Export Databases in MySQL or MariaDB Export databases is a basic task for all web developers when using MySQL or MariaDB. Use MySQL dump for database backup its require for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[46,50,45],"tags":[],"class_list":["post-1574","post","type-post","status-publish","format-standard","hentry","category-mysql","category-ngnix","category-ssh-commands"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Export Databases in MySQL or MariaDB - MyFreeOnlineTools<\/title>\n<meta name=\"description\" content=\"How To Export Databases in MySQL or MariaDB. Export all databases, single or multiple databases.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Export Databases in MySQL or MariaDB - MyFreeOnlineTools\" \/>\n<meta property=\"og:description\" content=\"How To Export Databases in MySQL or MariaDB. Export all databases, single or multiple databases.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\" \/>\n<meta property=\"og:site_name\" content=\"MyFreeOnlineTools\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-24T06:36:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-24T06:39:23+00:00\" \/>\n<meta name=\"author\" content=\"myfreeonlinetools\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"myfreeonlinetools\" \/>\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:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\"},\"author\":{\"name\":\"myfreeonlinetools\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\"},\"headline\":\"How To Export Databases in MySQL or MariaDB\",\"datePublished\":\"2022-09-24T06:36:54+00:00\",\"dateModified\":\"2022-09-24T06:39:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\"},\"wordCount\":272,\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"articleSection\":[\"MySQL\",\"Ngnix\",\"SSH Commands\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\",\"name\":\"How To Export Databases in MySQL or MariaDB - MyFreeOnlineTools\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\"},\"datePublished\":\"2022-09-24T06:36:54+00:00\",\"dateModified\":\"2022-09-24T06:39:23+00:00\",\"description\":\"How To Export Databases in MySQL or MariaDB. Export all databases, single or multiple databases.\",\"breadcrumb\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/myfreeonlinetools.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Export Databases in MySQL or MariaDB\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"name\":\"MyFreeOnlineTools\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\",\"name\":\"MyFreeOnlineTools\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"contentUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"width\":387,\"height\":79,\"caption\":\"MyFreeOnlineTools\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\",\"name\":\"myfreeonlinetools\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"caption\":\"myfreeonlinetools\"},\"description\":\"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.\",\"sameAs\":[\"https:\/\/myfreeonlinetools.com\/\",\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\",\"https:\/\/www.youtube.com\/learnschoolonline\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Export Databases in MySQL or MariaDB - MyFreeOnlineTools","description":"How To Export Databases in MySQL or MariaDB. Export all databases, single or multiple databases.","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:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/","og_locale":"en_US","og_type":"article","og_title":"How To Export Databases in MySQL or MariaDB - MyFreeOnlineTools","og_description":"How To Export Databases in MySQL or MariaDB. Export all databases, single or multiple databases.","og_url":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/","og_site_name":"MyFreeOnlineTools","article_author":"https:\/\/www.facebook.com\/LearnSchoolOnline\/","article_published_time":"2022-09-24T06:36:54+00:00","article_modified_time":"2022-09-24T06:39:23+00:00","author":"myfreeonlinetools","twitter_card":"summary_large_image","twitter_misc":{"Written by":"myfreeonlinetools","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/#article","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/"},"author":{"name":"myfreeonlinetools","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c"},"headline":"How To Export Databases in MySQL or MariaDB","datePublished":"2022-09-24T06:36:54+00:00","dateModified":"2022-09-24T06:39:23+00:00","mainEntityOfPage":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/"},"wordCount":272,"publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"articleSection":["MySQL","Ngnix","SSH Commands"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/","url":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/","name":"How To Export Databases in MySQL or MariaDB - MyFreeOnlineTools","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#website"},"datePublished":"2022-09-24T06:36:54+00:00","dateModified":"2022-09-24T06:39:23+00:00","description":"How To Export Databases in MySQL or MariaDB. Export all databases, single or multiple databases.","breadcrumb":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/myfreeonlinetools.com\/blog\/how-to-export-databases-in-mysql-or-mariadb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/myfreeonlinetools.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Export Databases in MySQL or MariaDB"}]},{"@type":"WebSite","@id":"https:\/\/myfreeonlinetools.com\/blog\/#website","url":"https:\/\/myfreeonlinetools.com\/blog\/","name":"MyFreeOnlineTools","description":"","publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization","name":"MyFreeOnlineTools","url":"https:\/\/myfreeonlinetools.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","contentUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","width":387,"height":79,"caption":"MyFreeOnlineTools"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c","name":"myfreeonlinetools","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","caption":"myfreeonlinetools"},"description":"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.","sameAs":["https:\/\/myfreeonlinetools.com\/","https:\/\/www.facebook.com\/LearnSchoolOnline\/","https:\/\/www.youtube.com\/learnschoolonline"]}]}},"_links":{"self":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/1574","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/comments?post=1574"}],"version-history":[{"count":0,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/1574\/revisions"}],"wp:attachment":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/media?parent=1574"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/categories?post=1574"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/tags?post=1574"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}