{"id":4419,"date":"2025-09-22T16:36:21","date_gmt":"2025-09-22T09:36:21","guid":{"rendered":"https:\/\/audithink.com\/?p=4419"},"modified":"2026-09-10T09:28:40","modified_gmt":"2026-09-10T02:28:40","slug":"how-to-create-a-database","status":"publish","type":"post","link":"https:\/\/audithink.com\/en\/blog\/cara-membuat-database\/","title":{"rendered":"How to Create a Database: MySQL, phpMyAdmin, CMD &amp; Excel"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Making <strong><a href=\"https:\/\/audithink.com\/en\/article\/database\/\" data-type=\"post\" data-id=\"4416\">database<\/a><\/strong> is an important initial step in application development, business data management, and auditing processes. This article provides a practical and professional step-by-step guide to creating a database using several common tools: MySQL (Workbench \/ SQL), phpMyAdmin, Command Line (CMD), as well as how to setup a simple \u201cdatabase\u201d in Excel for prototyping or migration. After the technical guidance, there are brief best practices and troubleshooting to make your database setup more secure and reliable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Preparation before creating a database<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Access \/ privilege<\/strong>: the user used must have the right <code>CREATE<\/code> (e.g. admin or root user).<\/li>\n\n\n\n<li><strong>Software installed<\/strong>: MySQL\/MariaDB server, and MySQL Workbench or phpMyAdmin if you prefer a GUI; for Excel, make sure you have an Office version that supports Power Query.<\/li>\n\n\n\n<li><strong>Encoding considerations<\/strong>: use <code>utf8mb4<\/code> for full character support (emoji &amp; multi-language).<\/li>\n\n\n\n<li><strong>Naming convention<\/strong>: use descriptive names, without spaces, use underscores (<code>shop_online<\/code>, <code>db_audit<\/code>).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to create a database in MySQL \u2014 MySQL Workbench (GUI)<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Buka MySQL Workbench<\/strong> and connect to the server instance (create a new connection if needed).<\/li>\n\n\n\n<li>In the left pane, right-click on the section <strong>Schemas<\/strong> \u2192 select <strong>Create Schema<\/strong> (or create a Database).<\/li>\n\n\n\n<li>Enter <strong>database name<\/strong> (e.g. <code>shop_online<\/code>).<\/li>\n\n\n\n<li>Select <strong>Default Collation<\/strong> \u2192 select <code>utf8mb4_general_ci<\/code> or <code>utf8mb4_unicode_ci<\/code>.<\/li>\n\n\n\n<li>Click <strong>Apply<\/strong> \u2192 review the SQL that appears \u2192 click <strong>Apply<\/strong> again to execute \u2192 <strong>Finish<\/strong>.<\/li>\n<\/ol>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong><em>Tips<\/em>:<\/strong> After creating, create a special user (not root) and grant privileges as needed by the application.<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">How to create a database in MySQL \u2014 Using SQL (CREATE DATABASE)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The command to create a database is <code>CREATE DATABASE database_name;<\/code><\/strong> \u2014 this basic SQL command can be run directly via Workbench, phpMyAdmin, or CLI. A complete example with character settings:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE IF NOT EXISTS toko_online CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect to MySQL via Workbench or the CLI.<\/li>\n\n\n\n<li>Run command <code>CREATE DATABASE<\/code> upstairs.<\/li>\n\n\n\n<li>Use <code>USE toko_online;<\/code> to move to the newly created database.<\/li>\n\n\n\n<li>Create a table with <code>CREATE TABLE<\/code> after.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Example of creating a simple table:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>USE toko_online; CREATE TABLE users ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100), email VARCHAR(150) UNIQUE, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How to create a database in phpMyAdmin<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">phpMyAdmin is a popular web interface for MySQL\/MariaDB.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Short steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Access phpMyAdmin through the browser (eg. <code>http:\/\/localhost\/phpmyadmin<\/code>).<\/li>\n\n\n\n<li>Login with a user who has creation rights.<\/li>\n\n\n\n<li>Click tab <strong>Databases<\/strong> at the top.<\/li>\n\n\n\n<li>Enter the database name in the column <code>Create database<\/code> (e.g. <code>db_audit<\/code>).<\/li>\n\n\n\n<li>Select collation (<code>utf8mb4_general_ci<\/code>) then click <strong>Create<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Note: phpMyAdmin is just a GUI; what happens behind the scenes are the commands <code>CREATE DATABASE<\/code> on the MySQL server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to create a database in CMD \/ Command Line (MySQL CLI)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Interactive connection<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Buka terminal \/ command prompt.<\/li>\n\n\n\n<li>Connection to MySQL server:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u root -p<\/code><\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Enter the password, then run:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE db_perusahaan CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; SHOW DATABASES;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Non-interactive creation (one line)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">On Linux \/ Windows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u root -p -e \"CREATE DATABASE db_perusahaan CHARACTER SET utf8mb4;\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">(Press Enter and enter the password when prompted.)<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong><em>Tips troubleshooting<\/em>:<\/strong> if the connection fails, check whether the service <code>mysqld<\/code> runs and the port (default 3306) is not blocked firewall.<\/p>\n<\/blockquote>\n\n\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"5427\" class=\"elementor elementor-5427\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-c693698 e-flex e-con-boxed e-con e-parent\" data-id=\"c693698\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f131bf4 cta-banner-article elementor-widget elementor-widget-image\" data-id=\"f131bf4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/audithink.com\/en\/demo\/?utm_source=blog&#038;utm_medium=cta-banner&#038;utm_campaign=request-demo-cta-banner&#038;utm_content=request-demo-aplikasi-audit-banner\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"2400\" height=\"800\" src=\"https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo.webp\" class=\"attachment-full size-full wp-image-5428\" alt=\"cta banner campaign\" srcset=\"https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo.webp 2400w, https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo-300x100.webp 300w, https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo-1024x341.webp 1024w, https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo-768x256.webp 768w, https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo-1536x512.webp 1536w, https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo-2048x683.webp 2048w, https:\/\/audithink.com\/wp-content\/uploads\/2026\/07\/audithink-banner-v3-photo-18x6.webp 18w\" sizes=\"(max-width: 2400px) 100vw, 2400px\" title=\"\">\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\n\n\n<h2 class=\"wp-block-heading\">How to create a Database in Excel<\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Important note: Excel is not a replacement for DBMS. Use Excel to create an initial data structure or a simple data source before migrating to a real database.<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Steps to create a neat structure:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Create header<\/strong> in the first row: use descriptive column names (eg. <code>id<\/code>, <code>name<\/code>, <code>e-mail<\/code>, <code>created_at<\/code>).<\/li>\n\n\n\n<li><strong>Format as Table<\/strong>: select data \u2192 <code>Insert<\/code> \u2192 <code>Table<\/code>. It provides automatic filters and structured references.<\/li>\n\n\n\n<li><strong>Use Data Validation<\/strong>: for columns with limited values (dropdown), validate numbers, dates.<\/li>\n\n\n\n<li><strong>Keep data types<\/strong>: make sure the date column uses the date format, numbers use numbers.<\/li>\n\n\n\n<li><strong>Export for Migration<\/strong>: <code>Save As<\/code> \u2192 CSV (UTF-8) for import into MySQL or a migration tool.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Excel table header example for <code>products<\/code>:<br>| id | sku | name | price | stock | created_at |<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Create a Database Online (Cloud \/ DBaaS)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Besides on a local computer, a database can also be created online through a <em>Database as a Service<\/em> (DBaaS) service without needing to install your own server. Some popular services: PlanetScale and Amazon RDS (MySQL-compatible), Supabase (PostgreSQL), and MongoDB Atlas (NoSQL).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The general flow is similar across most services:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Sign up for an account<\/strong> on your chosen DBaaS platform.<\/li>\n\n\n\n<li><strong>Create a new database instance\/project<\/strong> through the dashboard, choosing the nearest server region.<\/li>\n\n\n\n<li><strong>Copy the connection credentials<\/strong> (host, port, username, password, connection string) provided.<\/li>\n\n\n\n<li><strong>Connect<\/strong> via MySQL Workbench, phpMyAdmin (if supported), or your application using those credentials \u2014 creating tables and running queries works the same way as with a local database.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The main advantage of an online database is not having to manage your own server (maintenance, backups, and scaling are handled by the provider), though subscription costs and network latency compared to a local database should be considered.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Example mini tutorial: from CMD to create tables<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connections:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u root -p<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Create database:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE toko_online CHARACTER SET utf8mb4; USE toko_online;<\/code><\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Create table <code>products<\/code>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE TABLE products ( id INT AUTO_INCREMENT PRIMARY KEY, sku VARCHAR(50) UNIQUE, name VARCHAR(150), price DECIMAL(10,2), stock INT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );<\/code><\/pre>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Check:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>SHOW TABLES; DESC products;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Best practices saat membuat database<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Gunakan encoding UTF-8 (utf8mb4)<\/strong> for international compatibility.<\/li>\n\n\n\n<li><strong>Create a separate user<\/strong> for the application with minimum privileges (principle of least privilege).<\/li>\n\n\n\n<li><strong>Implement regular backups<\/strong> (mysqldump, DBaaS snapshots) and test the restore.<\/li>\n\n\n\n<li><strong>Gunakan migration scripts<\/strong> (e.g. Flyway, Liquibase, or a migration tools framework) so that the schema can be version-managed.<\/li>\n\n\n\n<li><strong>Index wise<\/strong>: create an index for frequently searched columns, but don't overdo it as it slows down writing.<\/li>\n\n\n\n<li><strong>Document schema<\/strong> and field rules to make it easier for the other team.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Common terms for error handling in databases<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Permission denied \/ Access denied<\/strong> Please refer to the user manual )<code>GRANT<\/code>), use user with CREATE rights.<\/li>\n\n\n\n<li><strong>Database does not appear in phpMyAdmin<\/strong> \u2192 Refresh, check user privileges, or restart the MySQL service.<\/li>\n\n\n\n<li><strong>Connection failed in CMD<\/strong> \u2192 Make sure <code>mysqld<\/code> runs, checks hosts \/ ports, firewalls.<\/li>\n\n\n\n<li><strong>Masalah karakter (garbled text)<\/strong> \u2192 Make sure the collation and client connection use <code>utf8mb4<\/code>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ About How to Create a <em>Database<\/em><\/h2>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>What needs to be prepared before creating a <em>database<\/em>?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">Make sure the user has the <code>CREATE<\/code>privilege, that software such as MySQL\/MariaDB and its GUI are installed, that you use <em>encoding<\/em> <code>utf8mb4<\/code> so multi-language characters are supported, and that you apply a descriptive <em>naming convention<\/em> without spaces.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>What is the command to create a database?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">The command to create a database is <code>CREATE DATABASE database_name;<\/code> in SQL. A complete example with character settings: <code>CREATE DATABASE IF NOT EXISTS database_name CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;<\/code>. This command can be run via MySQL Workbench, phpMyAdmin, or CLI\/CMD.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>How do you create a <em>database<\/em> through MySQL Workbench?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">Connect Workbench to the server instance, right-click the <em>Schemas<\/em> section and choose <em>Create Schema<\/em>, enter the database name, select the <em>default collation<\/em> such as <code>utf8mb4_general_ci<\/code>, then click <em>Apply<\/em> to execute the generated SQL.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>How do you create a <em>database<\/em> through phpMyAdmin and the command line?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">In phpMyAdmin: open the interface in a browser, log in, go to the <em>Databases<\/em>tab, enter the database name and collation, then click <em>Create<\/em>. On the command line: run <code>mysql -u root -p<\/code>, enter the <em>password<\/em>, then execute the command <code>CREATE DATABASE<\/code> \u2014 or do it in a single line using the <code>-e<\/code>.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>Can Excel be used as a <em>database<\/em>?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">Excel is not a replacement for a DBMS, but it can be used to lay out the initial data structure before migration. Create descriptive headers, format the range as a <em>Table<\/em>, use <em>data validation<\/em>, keep data types consistent, then export to CSV (UTF-8) for import into MySQL.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>How do you create a database online?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">Sign up for a <em>Database as a Service<\/em> (DBaaS) provider such as PlanetScale, Amazon RDS, Supabase, or MongoDB Atlas, create a new database instance through the dashboard, then connect your application or tools like Workbench using the provided connection credentials (host, port, username, password). You don't need to manage your own server, but subscription costs and network latency are worth considering.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><strong>What <em>best practice<\/em> when creating a <em>database<\/em>?<\/strong><\/summary>\n<p class=\"wp-block-paragraph\">Use <em>encoding<\/em> utf8mb4, create a separate application user with minimum privileges, run regular <em>backup<\/em> and test the <em>restore<\/em>as well, manage schema versions through a <em>migration script<\/em> tool such as Flyway or Liquibase, create indexes judiciously, and document the schema for the rest of the team.<\/p>\n<\/details>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Creating a database is a basic yet crucial skill for system development and data management. From creation via GUI (Workbench \/ phpMyAdmin), command line, and online databases (DBaaS), to initial structuring in Excel, each method has its place depending on the need: prototyping, quick administration, or deployment automation.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To support your audit, reporting, and data management processes, <strong><a href=\"https:\/\/audithink.com\/en\/\" data-type=\"page\" data-id=\"794\">Audithink<\/a><\/strong> provides solutions that facilitate data integration and database-based audit report generation. If you need help with database creation, data migration, or system integration with Audithink, please visit the Audithink website and contact our team via <strong><a href=\"https:\/\/audithink.com\/en\/contact\/\" data-type=\"page\" data-id=\"2344\">Contact page<\/a><\/strong> - our team is ready to help.<\/p>","protected":false},"excerpt":{"rendered":"<p>A step-by-step guide to creating a database using MySQL, phpMyAdmin, and the command line, and to organising data in Excel for business and audit needs.<\/p>","protected":false},"author":1,"featured_media":4420,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":"","rank_math_title":"Cara Membuat Database: MySQL, phpMyAdmin, CMD & Excel","rank_math_description":"Panduan cara membuat database: MySQL (Workbench & CMD), phpMyAdmin, database online (DBaaS), dan struktur sederhana di Excel. Praktis untuk pemula & profesional.","rank_math_canonical_url":"","rank_math_focus_keyword":"cara membuat database","rank_math_facebook_title":"","rank_math_facebook_description":"","rank_math_twitter_title":"","rank_math_twitter_description":"","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"","_yoast_wpseo_canonical":"","_yoast_wpseo_focuskw":"","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","rank_math_robots":[]},"categories":[15],"tags":[28],"class_list":["post-4419","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","tag-software-audit"],"acf":[],"_links":{"self":[{"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/posts\/4419","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/comments?post=4419"}],"version-history":[{"count":4,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/posts\/4419\/revisions"}],"predecessor-version":[{"id":6260,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/posts\/4419\/revisions\/6260"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/media\/4420"}],"wp:attachment":[{"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/media?parent=4419"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/categories?post=4419"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/audithink.com\/en\/wp-json\/wp\/v2\/tags?post=4419"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}