{"id":414,"date":"2015-03-12T14:50:44","date_gmt":"2015-03-12T09:50:44","guid":{"rendered":"http:\/\/128.199.176.160\/?p=414"},"modified":"2026-04-11T12:48:30","modified_gmt":"2026-04-11T07:48:30","slug":"how-to-interact-with-an-api-using-wordpress-standard-functions","status":"publish","type":"post","link":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/","title":{"rendered":"Learn How To Interact With An API Using WordPress Standard Functions"},"content":{"rendered":"\n<p>To interact with APIs is a very common thing in Web Development, WordPress gives us the utility functions to interact with APIs. As you know to interact with an API requires good knowledge of <strong>cURL<\/strong> and many other things,&nbsp;WordPress takes this responsibility and wrap the inner stories into utility functions for you.<\/p>\n\n\n\n<p><strong>&#8220;<a href=\"https:\/\/codex.wordpress.org\/Function_Reference\/wp_remote_get\" target=\"_blank\" rel=\"noopener\">wp_remote_get<\/a>&#8220;<\/strong> is the function that gets the data for you from an API. All you have to do is just put the endpoint as an argument and voila! It&#8217;s magic.<\/p>\n\n\n\n<p>This function basically takes two arguments<br>\n1.&nbsp;<strong>$url<\/strong> \u2013 Resource to retrieve data from. This must be in a standard HTTP format<br>\n2. <strong>$args<\/strong> \u2013 OPTIONAL \u2013 You may pass an array of arguments in here to alter behavior and headers, such as cookies, follow redirects, etc.<\/p>\n\n\n\n<p>Let&#8217;s make a call to GitHub API and see what happens.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$response = wp_remote_get( 'https:\/\/api.github.com\/users\/ifiwfi' );<\/pre>\n\n\n\n<p>It will retrieve the following data:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Array\n(\n[headers] =&gt; Array\n(\n[server] =&gt; GitHub.com\n[date] =&gt; Thu, 12 Mar 2015 13:46:33 GMT\n[content-type] =&gt; application\/json; charset=utf-8\n[connection] =&gt; close\n[status] =&gt; 200 OK\n[x-ratelimit-limit] =&gt; 60\n[x-ratelimit-remaining] =&gt; 58\n[x-ratelimit-reset] =&gt; 1426171579\n[cache-control] =&gt; public, max-age=60, s-maxage=60\n[last-modified] =&gt; Wed, 04 Mar 2015 18:42:08 GMT\n[etag] =&gt; W\/\"87972c50f954668862db38480dab5c78\"\n[vary] =&gt; Array\n(\n[0] =&gt; Accept\n[1] =&gt; Accept-Encoding\n)\n\n[x-github-media-type] =&gt; github.v3\n[x-xss-protection] =&gt; 1; mode=block\n[x-frame-options] =&gt; deny\n[content-security-policy] =&gt; default-src 'none'\n[access-control-allow-credentials] =&gt; true\n[access-control-expose-headers] =&gt; ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval\n[access-control-allow-origin] =&gt; *\n[x-github-request-id] =&gt; 6E271E7B:376A:68977C5:550198B8\n[strict-transport-security] =&gt; max-age=31536000; includeSubdomains; preload\n[x-content-type-options] =&gt; nosniff\n[x-served-by] =&gt; 07ff1c8a09e44b62e277fae50a1b1dc4\n[content-encoding] =&gt; gzip\n)\n\n[body] =&gt; {\"login\":\"ifiwfi\",\"id\":6972531,\"avatar_url\":\"https:\/\/avatars.githubusercontent.com\/u\/6972531?v=3\",\"gravatar_id\":\"\",\"url\":\"https:\/\/api.github.com\/users\/ifiwfi\",\"html_url\":\"https:\/\/github.com\/ifiwfi\",\"followers_url\":\"https:\/\/api.github.com\/users\/ifiwfi\/followers\"}\n[response] =&gt; Array\n(\n[code] =&gt; 200\n[message] =&gt; OK\n)\n\n[cookies] =&gt; Array\n(\n)\n\n[filename] =&gt; \n)<\/pre>\n\n\n\n<p>If you want to get the body part from the response, you can do like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$response = wp_remote_get( 'https:\/\/api.github.com\/users\/ifiwfi' );\n$body = wp_remote_retrieve_body( $response );<\/pre>\n\n\n\n<p>If you want to get the response code, you can do like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$response = wp_remote_get( 'https:\/\/api.github.com\/users\/ifiwfi' );\n$http_code = wp_remote_retrieve_response_code( $response );<\/pre>\n\n\n\n<p>The next part of the interaction is to post the values to an API. You can use this function <strong>&#8220;<a href=\"https:\/\/codex.wordpress.org\/Function_Reference\/wp_remote_post\" target=\"_blank\" rel=\"noopener\">wp_remote_post<\/a>&#8220;<\/strong>. This function takes the first argument the <strong>URL<\/strong> on which the data has to be posted and the second argument the <strong>data<\/strong> which has to be posted. The data should be in <strong>the key value pair array<\/strong>. As GitHub doesn&#8217;t let us post data so we just assume some URLs.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$body = array(\n'name' =&gt; 'Irfan Ahmed',\n'profession' =&gt; 'Software engineer',\n'email' =&gt; 'irfan.ahmed5123@yahoo.com',\n'subject' =&gt; 'How to post data to a form or API',\n'comment' =&gt; 'Hey, I learned a lot from this article.'\n);\n\n$args = array(\n'body' =&gt; $body,\n'timeout' =&gt; '10',\n'redirection' =&gt; '3',\n'httpversion' =&gt; '1.0',\n'blocking' =&gt; true,\n'headers' =&gt; array(),\n'cookies' =&gt; array()\n);\n\n$response = wp_remote_post( 'http:\/\/yourwebsite.com\/contact\/', $args );<\/pre>\n\n\n\n<p>The last important thing is to make any kind of call. Like you want to delete an object from database table using the API. It will&nbsp;be done like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$args = array(\n'method' =&gt; 'DELETE'\n);\n$response = wp_remote_request( 'http:\/\/api.yourwebsite.com\/object\/to\/delete', $args );<\/pre>\n\n\n\n<p>This is the most easiest and interactive way to use an API using WordPress using standard functions. Feel free to comment below and let us know how this tutorial helps you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To interact with APIs is a very common thing in Web Development, WordPress gives us the utility functions to interact with APIs. As you know to interact with an API requires good knowledge of cURL and many other things,&nbsp;WordPress takes this responsibility and wrap the inner stories into utility functions for you. &ldquo;wp_remote_get&ldquo; is the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":320171,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_analytify_skip_tracking":false,"footnotes":""},"categories":[53],"tags":[63,23],"class_list":["post-414","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to","tag-api","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Interact With An API Using Standard WordPress Functions?<\/title>\n<meta name=\"description\" content=\"To interact with APIs is a very common thing in the Web Development, WordPress gives us the utility functions to interact with APIs. API requires good.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learn How To Interact With An API Using WordPress Standard Functions\" \/>\n<meta property=\"og:description\" content=\"To interact with APIs is a very common thing in the Web Development, WordPress gives us the utility functions to interact with APIs. API requires good.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/\" \/>\n<meta property=\"og:site_name\" content=\"WPBrigade\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/WPBrigade\" \/>\n<meta property=\"article:published_time\" content=\"2015-03-12T09:50:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-11T07:48:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Adnan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wpbrigade\" \/>\n<meta name=\"twitter:site\" content=\"@wpbrigade\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adnan\" \/>\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:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/\"},\"author\":{\"name\":\"Adnan\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/60305aa637f786ceebbf9949f1a24634\"},\"headline\":\"Learn How To Interact With An API Using WordPress Standard Functions\",\"datePublished\":\"2015-03-12T09:50:44+00:00\",\"dateModified\":\"2026-04-11T07:48:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/\"},\"wordCount\":323,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png\",\"keywords\":[\"API\",\"WordPress\"],\"articleSection\":[\"How-to\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/\",\"name\":\"How To Interact With An API Using Standard WordPress Functions?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png\",\"datePublished\":\"2015-03-12T09:50:44+00:00\",\"dateModified\":\"2026-04-11T07:48:30+00:00\",\"description\":\"To interact with APIs is a very common thing in the Web Development, WordPress gives us the utility functions to interact with APIs. API requires good.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png\",\"width\":1500,\"height\":800,\"caption\":\"Learn How To Interact With An API Using WordPress Standard Functions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-interact-with-an-api-using-wordpress-standard-functions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wpbrigade.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learn How To Interact With An API Using WordPress Standard Functions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/\",\"name\":\"WPBrigade\",\"description\":\"WordPress Development Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wpbrigade.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\",\"name\":\"WPBrigade\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screen-Shot-2021-07-02-at-12.42.14-AM.png\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screen-Shot-2021-07-02-at-12.42.14-AM.png\",\"width\":271,\"height\":63,\"caption\":\"WPBrigade\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/WPBrigade\",\"https:\\\/\\\/x.com\\\/wpbrigade\",\"https:\\\/\\\/www.instagram.com\\\/wpbrigade.agency\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wpbrigade\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/Wpbrigade\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/60305aa637f786ceebbf9949f1a24634\",\"name\":\"Adnan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/db5b529a3f883d64715e1ccef9fbb1b5d602be4f9430721c997513571f1ce99f?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/db5b529a3f883d64715e1ccef9fbb1b5d602be4f9430721c997513571f1ce99f?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/db5b529a3f883d64715e1ccef9fbb1b5d602be4f9430721c997513571f1ce99f?s=96&d=retro&r=g\",\"caption\":\"Adnan\"},\"sameAs\":[\"http:\\\/\\\/adnan.pk\\\/\",\"https:\\\/\\\/x.com\\\/wpbrigade\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Interact With An API Using Standard WordPress Functions?","description":"To interact with APIs is a very common thing in the Web Development, WordPress gives us the utility functions to interact with APIs. API requires good.","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:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/","og_locale":"en_US","og_type":"article","og_title":"Learn How To Interact With An API Using WordPress Standard Functions","og_description":"To interact with APIs is a very common thing in the Web Development, WordPress gives us the utility functions to interact with APIs. API requires good.","og_url":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/","og_site_name":"WPBrigade","article_publisher":"https:\/\/facebook.com\/WPBrigade","article_published_time":"2015-03-12T09:50:44+00:00","article_modified_time":"2026-04-11T07:48:30+00:00","og_image":[{"width":1500,"height":800,"url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png","type":"image\/png"}],"author":"Adnan","twitter_card":"summary_large_image","twitter_creator":"@wpbrigade","twitter_site":"@wpbrigade","twitter_misc":{"Written by":"Adnan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#article","isPartOf":{"@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/"},"author":{"name":"Adnan","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/60305aa637f786ceebbf9949f1a24634"},"headline":"Learn How To Interact With An API Using WordPress Standard Functions","datePublished":"2015-03-12T09:50:44+00:00","dateModified":"2026-04-11T07:48:30+00:00","mainEntityOfPage":{"@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/"},"wordCount":323,"commentCount":2,"publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"image":{"@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png","keywords":["API","WordPress"],"articleSection":["How-to"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/","url":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/","name":"How To Interact With An API Using Standard WordPress Functions?","isPartOf":{"@id":"https:\/\/wpbrigade.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#primaryimage"},"image":{"@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png","datePublished":"2015-03-12T09:50:44+00:00","dateModified":"2026-04-11T07:48:30+00:00","description":"To interact with APIs is a very common thing in the Web Development, WordPress gives us the utility functions to interact with APIs. API requires good.","breadcrumb":{"@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#primaryimage","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/learn-how-to-interact-with-an-api-using-wordpress-standard-functions.png","width":1500,"height":800,"caption":"Learn How To Interact With An API Using WordPress Standard Functions"},{"@type":"BreadcrumbList","@id":"https:\/\/wpbrigade.com\/how-to-interact-with-an-api-using-wordpress-standard-functions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpbrigade.com\/"},{"@type":"ListItem","position":2,"name":"Learn How To Interact With An API Using WordPress Standard Functions"}]},{"@type":"WebSite","@id":"https:\/\/wpbrigade.com\/#website","url":"https:\/\/wpbrigade.com\/","name":"WPBrigade","description":"WordPress Development Agency","publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpbrigade.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wpbrigade.com\/#organization","name":"WPBrigade","url":"https:\/\/wpbrigade.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/#\/schema\/logo\/image\/","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2021\/07\/Screen-Shot-2021-07-02-at-12.42.14-AM.png","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2021\/07\/Screen-Shot-2021-07-02-at-12.42.14-AM.png","width":271,"height":63,"caption":"WPBrigade"},"image":{"@id":"https:\/\/wpbrigade.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/WPBrigade","https:\/\/x.com\/wpbrigade","https:\/\/www.instagram.com\/wpbrigade.agency\/","https:\/\/www.linkedin.com\/company\/wpbrigade","https:\/\/www.youtube.com\/c\/Wpbrigade"]},{"@type":"Person","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/60305aa637f786ceebbf9949f1a24634","name":"Adnan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/db5b529a3f883d64715e1ccef9fbb1b5d602be4f9430721c997513571f1ce99f?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/db5b529a3f883d64715e1ccef9fbb1b5d602be4f9430721c997513571f1ce99f?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/db5b529a3f883d64715e1ccef9fbb1b5d602be4f9430721c997513571f1ce99f?s=96&d=retro&r=g","caption":"Adnan"},"sameAs":["http:\/\/adnan.pk\/","https:\/\/x.com\/wpbrigade"]}]}},"_links":{"self":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/414","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/comments?post=414"}],"version-history":[{"count":2,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/414\/revisions"}],"predecessor-version":[{"id":319108,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/414\/revisions\/319108"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media\/320171"}],"wp:attachment":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media?parent=414"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/categories?post=414"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/tags?post=414"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}