{"id":3484,"date":"2022-09-21T21:08:59","date_gmt":"2022-09-21T16:08:59","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3484"},"modified":"2022-09-21T21:09:01","modified_gmt":"2022-09-21T16:09:01","slug":"react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/","title":{"rendered":"React.js Random User API Example to Fetch User Details Using Axios &#038; reactstrap"},"content":{"rendered":"\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npx create-react-app reactproject<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">cd reactproject<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npm i reactstrap<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npm i axios<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npm i react-icons<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">App.js<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">import React, { useState, useEffect } from 'react'\nimport Axios from 'axios'\nimport { Container, Row, Col,Button } from 'reactstrap'\nimport &quot;bootstrap\/dist\/css\/bootstrap.min.css&quot;\nimport '.\/App.css'\nimport ProfileCard from '.\/components\/ProfileCard'\n\nfunction App() {\n  const [details, setDetails] = useState({});\n\n  const fetchFromAPI = async () =&gt; {\n    const { data } = await Axios.get('https:\/\/randomuser.me\/api\/')\n    console.log(data)\n    const details = data.results[0]\n    setDetails(details)\n  }\n\n\n  useEffect(() =&gt; {\n    fetchFromAPI()\n  }, [])\n\n  return (\n    &lt;Container fluid className=&quot;p-4 bg-primary App&quot;&gt;\n      &lt;Row&gt;\n        &lt;Col md={4} className=&quot;offset-md-4 mt-4&quot;&gt;\n          &lt;ProfileCard details={details} \/&gt;\n        &lt;\/Col&gt;\n      &lt;\/Row&gt;\n      &lt;Button className='bg-danger offset-md-4 mt-4 text-center' onClick={fetchFromAPI}&gt;Get Random User&lt;\/Button&gt;\n    &lt;\/Container&gt;\n  );\n}\n\nexport default App;<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">App.css<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">.App {\n  min-height: 100vh;\n}\n\n.card {\n  margin-top: 150px;\n}\n\nimg {\n  margin-top: -80px;\n}<\/pre><\/div>\n\n\n\n<p>Now, add a component called\u00a0<code>ProfileCard.js<\/code>\u00a0inside the components folder.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">ProfileCard.js<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">import React from 'react'\nimport { Card, CardBody, CardTitle, CardText } from 'reactstrap'\nimport { FaEnvelope, FaMapMarkedAlt, FaPhone } from 'react-icons\/fa'\n\nconst ProfileCard = ({ details }) =&gt; {\n    return (\n        &lt;Card&gt;\n            &lt;CardBody className='text-center'&gt;\n                &lt;img alt=&quot;profile_pic&quot; height=&quot;150&quot; width=&quot;150&quot; className=&quot;rounded-circle img-thumbnail border-danger&quot; src={details.picture?.large} \/&gt;\n                &lt;CardTitle className='text-primary'&gt;\n                    &lt;h1&gt;\n                        &lt;span&gt;{details.name?.title}. {details.name?.first} {details.name?.last}&lt;\/span&gt;\n                    &lt;\/h1&gt;\n                &lt;\/CardTitle&gt;\n                &lt;CardText className='m-3'&gt;\n                    &lt;span&gt;&lt;FaMapMarkedAlt \/&gt;  {details.location?.city}&lt;\/span&gt;\n                &lt;\/CardText&gt;\n                &lt;CardText className='m-3'&gt;\n                    &lt;span&gt;&lt;FaPhone \/&gt;  {details.phone}&lt;\/span&gt;\n                &lt;\/CardText&gt;\n                &lt;CardText className='m-3'&gt;\n                    &lt;span&gt;&lt;FaEnvelope \/&gt;  {details.email}&lt;\/span&gt;\n                &lt;\/CardText&gt;\n            &lt;\/CardBody&gt;\n        &lt;\/Card&gt;\n    )\n}\n\nexport default ProfileCard<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Screenshot of React.js Random User API Example<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"786\" height=\"721\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/React_Random_User_API_Example.jpg\" alt=\"React.js Random User API Example\" class=\"wp-image-3485\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/React_Random_User_API_Example.jpg 786w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/React_Random_User_API_Example-300x275.jpg 300w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/React_Random_User_API_Example-768x704.jpg 768w\" sizes=\"auto, (max-width: 786px) 100vw, 786px\" \/><figcaption>React.js Random User API Example<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>App.js App.css Now, add a component called\u00a0ProfileCard.js\u00a0inside the components folder. ProfileCard.js Screenshot of React.js Random User API Example<\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3484","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>React.js Random User API Example to Fetch User Details Using Axios &amp; reactstrap<\/title>\n<meta name=\"description\" content=\"npx create-react-app reactproject cd reactproject npm i reactstrap npm i axios npm i react-icons App.js import React, { useState, useEffect } from &#039;react&#039;\" \/>\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.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"React.js Random User API Example to Fetch User Details Using Axios &amp; reactstrap\" \/>\n<meta property=\"og:description\" content=\"npx create-react-app reactproject cd reactproject npm i reactstrap npm i axios npm i react-icons App.js import React, { useState, useEffect } from &#039;react&#039;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-21T16:08:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-21T16:09:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/React_Random_User_API_Example.jpg\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"React.js Random User API Example to Fetch User Details Using Axios & reactstrap","description":"npx create-react-app reactproject cd reactproject npm i reactstrap npm i axios npm i react-icons App.js import React, { useState, useEffect } from 'react'","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.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/","og_locale":"en_US","og_type":"article","og_title":"React.js Random User API Example to Fetch User Details Using Axios & reactstrap","og_description":"npx create-react-app reactproject cd reactproject npm i reactstrap npm i axios npm i react-icons App.js import React, { useState, useEffect } from 'react'","og_url":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-09-21T16:08:59+00:00","article_modified_time":"2022-09-21T16:09:01+00:00","og_image":[{"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/React_Random_User_API_Example.jpg","type":"","width":"","height":""}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"React.js Random User API Example to Fetch User Details Using Axios &#038; reactstrap","datePublished":"2022-09-21T16:08:59+00:00","dateModified":"2022-09-21T16:09:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/"},"wordCount":42,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/","url":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/","name":"React.js Random User API Example to Fetch User Details Using Axios & reactstrap","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-09-21T16:08:59+00:00","dateModified":"2022-09-21T16:09:01+00:00","description":"npx create-react-app reactproject cd reactproject npm i reactstrap npm i axios npm i react-icons App.js import React, { useState, useEffect } from 'react'","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/react-js-random-user-api-example-to-fetch-user-details-using-axios-reactstrap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"React.js Random User API Example to Fetch User Details Using Axios &#038; reactstrap"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3484","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3484"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3484\/revisions"}],"predecessor-version":[{"id":3486,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3484\/revisions\/3486"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3484"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3484"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3484"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}