{"id":73542,"date":"2025-01-22T17:24:50","date_gmt":"2025-01-22T20:24:50","guid":{"rendered":"https:\/\/www.eldorado.org.br\/en\/blog\/"},"modified":"2025-02-25T17:26:32","modified_gmt":"2025-02-25T20:26:32","slug":"essential-fundamentals-for-getting-started-with-api-test-automation","status":"publish","type":"post","link":"https:\/\/www.eldorado.org.br\/en\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/","title":{"rendered":"Essential Fundamentals for Getting Started with API Test Automation"},"content":{"rendered":"<p data-start=\"134\" data-end=\"762\">APIs are a key component of modern software architecture, as they facilitate communication between different services and systems, often of distinct natures. API testing is crucial to ensure that this communication occurs correctly, securely, and efficiently while also verifying that the implemented functionalities work as expected. With API testing, we can validate backend functionalities independently of the frontend, allowing tests to begin before the interface is complete. This practice enables early identification and resolution of issues, speeding up the development process and improving overall software quality.<\/p>\n<h2 data-start=\"764\" data-end=\"789\">What is API Testing?<\/h2>\n<p data-start=\"791\" data-end=\"1400\">API stands for &#8220;Application Programming Interface.&#8221; The &#8220;Application&#8221; represents any software that performs a specific function, and the &#8220;Interface&#8221; establishes a contract or set of rules for communication. Each part (client and server) must follow the format defined by the API to send and receive data correctly. This structure ensures that exchanged messages are understood, promoting efficient and secure integration between different systems. The API acts as a &#8220;bridge&#8221; for communication between applications, allowing them to exchange information and resources in a standardized and structured manner.<\/p>\n<h2 data-start=\"1402\" data-end=\"1420\">What is HTTP?<\/h2>\n<p data-start=\"1422\" data-end=\"1847\">HTTP, or Hypertext Transfer Protocol, is a communication protocol that enables the exchange of information between a client and a server. It defines a set of rules that both must follow for communication to be clear and understandable, which is why it is called a protocol. This allows the client to send requests to the server, which responds according to the same rules, ensuring an organized and effective data exchange.<\/p>\n<p data-start=\"1849\" data-end=\"2163\">When you access a website, the browser sends an HTTP request to the server hosting the site. The server then responds with the page data (usually in HTML), which the browser interprets and displays to you. HTTP also allows operations beyond simply &#8220;viewing&#8221; a page, such as submitting forms or downloading files.<\/p>\n<ul data-start=\"2165\" data-end=\"2456\">\n<li data-start=\"2165\" data-end=\"2456\">HTTP is based on a request-response model, and messages can be sent using methods such as:\n<ul data-start=\"2262\" data-end=\"2456\">\n<li data-start=\"2262\" data-end=\"2318\"><strong data-start=\"2264\" data-end=\"2271\">GET<\/strong>: Retrieves data (such as loading a webpage).<\/li>\n<li data-start=\"2321\" data-end=\"2388\"><strong data-start=\"2323\" data-end=\"2331\">POST<\/strong>: Sends data to the server (such as submitting a form).<\/li>\n<li data-start=\"2391\" data-end=\"2456\"><strong data-start=\"2393\" data-end=\"2400\">PUT<\/strong> and <strong data-start=\"2405\" data-end=\"2415\">DELETE<\/strong>: Update and remove data, respectively.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p data-start=\"2458\" data-end=\"2690\">HTTP is called a &#8220;stateless&#8221; protocol because each request is independent; it does not &#8220;remember&#8221; past interactions. The more secure version of the protocol is <strong data-start=\"2618\" data-end=\"2627\">HTTPS<\/strong> (HTTP Secure), which encrypts communication to protect data.<\/p>\n<p data-start=\"2458\" data-end=\"2690\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-73543\" src=\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/02\/dddddd.jpg\" alt=\"\" width=\"345\" height=\"199\" srcset=\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/02\/dddddd.jpg 345w, https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/02\/dddddd-300x173.jpg 300w\" sizes=\"auto, (max-width: 345px) 100vw, 345px\" \/><\/p>\n<h2 data-start=\"2692\" data-end=\"2724\">Request (Request Structure)<\/h2>\n<p data-start=\"2726\" data-end=\"2879\">A <strong data-start=\"2728\" data-end=\"2739\">Request<\/strong> is the request the client makes to the server, precisely describing what it wants. Each request includes a specific structure containing:<\/p>\n<ul data-start=\"2881\" data-end=\"3325\">\n<li data-start=\"2881\" data-end=\"2993\"><strong data-start=\"2883\" data-end=\"2900\">Address (URL)<\/strong>: The location of the resource that the client wants to access or manipulate on the server.<\/li>\n<li data-start=\"2994\" data-end=\"3164\"><strong data-start=\"2996\" data-end=\"3006\">Header<\/strong>: A set of additional information providing context for the server, such as the accepted data type (JSON, HTML), authentication details, and request origin.<\/li>\n<li data-start=\"3165\" data-end=\"3325\"><strong data-start=\"3167\" data-end=\"3175\">Body<\/strong>: Extra data the client sends, required in methods like POST and PUT, usually in JSON or XML format, detailing what needs to be processed or stored.<\/li>\n<\/ul>\n<p data-start=\"3327\" data-end=\"3448\">This structure helps the server understand and process the request to respond with the requested information or action.<\/p>\n<h2 data-start=\"3450\" data-end=\"3477\">What are GET and POST?<\/h2>\n<p data-start=\"3479\" data-end=\"3690\">These are HTTP methods used to interact with the server. They indicate the action the client wants to perform and are fundamental in client-server communication (e.g., a browser interacting with a web server).<\/p>\n<ul data-start=\"3692\" data-end=\"4317\">\n<li data-start=\"3692\" data-end=\"4015\"><strong data-start=\"3694\" data-end=\"3701\">GET<\/strong>: Used when the client wants to retrieve information from the server. In other words, it requests data, such as when you visit a webpage. When you enter a website address and press &#8220;Enter,&#8221; the browser makes a GET request to the server, requesting the necessary resources (such as the page\u2019s HTML, images, etc.).<\/li>\n<li data-start=\"4016\" data-end=\"4317\"><strong data-start=\"4018\" data-end=\"4026\">POST<\/strong>: Used when the client wants to send data to the server for processing or storage. A classic example is submitting a form\u2014when you fill in fields like name and email on a registration page and click &#8220;Submit,&#8221; the browser sends the form data via a POST request to the server for processing.<\/li>\n<\/ul>\n<h2 data-start=\"4319\" data-end=\"4350\">Response (Server Response)<\/h2>\n<p data-start=\"4352\" data-end=\"4732\">We\u2019ve learned that the client sends a <strong data-start=\"4390\" data-end=\"4401\">Request<\/strong> to the server. The <strong data-start=\"4421\" data-end=\"4433\">Response<\/strong> is the message the server sends back after receiving and processing the request. It contains the requested information or, in case of an error, a message explaining what went wrong. When a client makes a request, it specifies what it expects to receive in return (for example, data or a webpage).<\/p>\n<h2 data-start=\"4734\" data-end=\"4783\">What Validations Can Be Performed on an API?<\/h2>\n<ul data-start=\"4785\" data-end=\"5500\">\n<li data-start=\"4785\" data-end=\"4893\"><strong data-start=\"4787\" data-end=\"4807\">Security Testing<\/strong>: Identifies security vulnerabilities and verifies if the API can withstand attacks.<\/li>\n<li data-start=\"4894\" data-end=\"5009\"><strong data-start=\"4896\" data-end=\"4919\">Integration Testing<\/strong>: Checks how the API connects and interacts with other systems or parts of the software.<\/li>\n<li data-start=\"5010\" data-end=\"5105\"><strong data-start=\"5012\" data-end=\"5028\">Unit Testing<\/strong>: Tests specific parts of the API, such as individual functions or methods.<\/li>\n<li data-start=\"5106\" data-end=\"5207\"><strong data-start=\"5108\" data-end=\"5134\">Error Handling Testing<\/strong>: Ensures the API can handle issues, such as missing or incorrect data.<\/li>\n<li data-start=\"5208\" data-end=\"5287\"><strong data-start=\"5210\" data-end=\"5232\">Functional Testing<\/strong>: Verifies if different API functions work correctly.<\/li>\n<li data-start=\"5288\" data-end=\"5385\"><strong data-start=\"5290\" data-end=\"5313\">Reliability Testing<\/strong>: Confirms that the API functions properly over time without failures.<\/li>\n<li data-start=\"5386\" data-end=\"5500\"><strong data-start=\"5388\" data-end=\"5404\">Load Testing<\/strong>: Measures API performance when handling many requests under normal conditions and peak loads.<\/li>\n<\/ul>\n<p data-start=\"5502\" data-end=\"5576\">These tests help ensure that the API is secure, efficient, and reliable.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>APIs are a key component of modern software architecture, as [&hellip;]<\/p>\n","protected":false},"author":93,"featured_media":73546,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[2],"tags":[],"coauthors":[281],"class_list":["post-73542","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-connectivity"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Essential Fundamentals for Getting Started with API Test Automation - Instituto Eldorado<\/title>\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.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Essential Fundamentals for Getting Started with API Test Automation - Instituto Eldorado\" \/>\n<meta property=\"og:description\" content=\"APIs are a key component of modern software architecture, as [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\" \/>\n<meta property=\"og:site_name\" content=\"Instituto Eldorado\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-22T20:24:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-25T20:26:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2048\" \/>\n\t<meta property=\"og:image:height\" content=\"1026\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Adriany Gra\u00e7as de Souza\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adriany Gra\u00e7as de Souza\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\"},\"author\":{\"name\":\"Adriany Gra\u00e7as de Souza\",\"@id\":\"https:\/\/www.eldorado.org.br\/#\/schema\/person\/afa7570d748d4cedaae125f8ca50afab\"},\"headline\":\"Essential Fundamentals for Getting Started with API Test Automation\",\"datePublished\":\"2025-01-22T20:24:50+00:00\",\"dateModified\":\"2025-02-25T20:26:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\"},\"wordCount\":831,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg\",\"articleSection\":[\"Connectivity\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\",\"url\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\",\"name\":\"Essential Fundamentals for Getting Started with API Test Automation - Instituto Eldorado\",\"isPartOf\":{\"@id\":\"https:\/\/www.eldorado.org.br\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg\",\"datePublished\":\"2025-01-22T20:24:50+00:00\",\"dateModified\":\"2025-02-25T20:26:32+00:00\",\"author\":{\"@id\":\"https:\/\/www.eldorado.org.br\/#\/schema\/person\/afa7570d748d4cedaae125f8ca50afab\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage\",\"url\":\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg\",\"contentUrl\":\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg\",\"width\":2048,\"height\":1026},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.eldorado.org.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Essential Fundamentals for Getting Started with API Test Automation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.eldorado.org.br\/#website\",\"url\":\"https:\/\/www.eldorado.org.br\/\",\"name\":\"Instituto Eldorado\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.eldorado.org.br\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.eldorado.org.br\/#\/schema\/person\/afa7570d748d4cedaae125f8ca50afab\",\"name\":\"Adriany Gra\u00e7as de Souza\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.eldorado.org.br\/#\/schema\/person\/image\/a20db1255b7611650f72b6888a902e04\",\"url\":\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/1737559114_9396c1_eu-150x150.jpg\",\"contentUrl\":\"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/1737559114_9396c1_eu-150x150.jpg\",\"caption\":\"Adriany Gra\u00e7as de Souza\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Essential Fundamentals for Getting Started with API Test Automation - Instituto Eldorado","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.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/","og_locale":"en_US","og_type":"article","og_title":"Essential Fundamentals for Getting Started with API Test Automation - Instituto Eldorado","og_description":"APIs are a key component of modern software architecture, as [&hellip;]","og_url":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/","og_site_name":"Instituto Eldorado","article_published_time":"2025-01-22T20:24:50+00:00","article_modified_time":"2025-02-25T20:26:32+00:00","og_image":[{"width":2048,"height":1026,"url":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg","type":"image\/jpeg"}],"author":"Adriany Gra\u00e7as de Souza","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Adriany Gra\u00e7as de Souza","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#article","isPartOf":{"@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/"},"author":{"name":"Adriany Gra\u00e7as de Souza","@id":"https:\/\/www.eldorado.org.br\/#\/schema\/person\/afa7570d748d4cedaae125f8ca50afab"},"headline":"Essential Fundamentals for Getting Started with API Test Automation","datePublished":"2025-01-22T20:24:50+00:00","dateModified":"2025-02-25T20:26:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/"},"wordCount":831,"commentCount":0,"image":{"@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg","articleSection":["Connectivity"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/","url":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/","name":"Essential Fundamentals for Getting Started with API Test Automation - Instituto Eldorado","isPartOf":{"@id":"https:\/\/www.eldorado.org.br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage"},"image":{"@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg","datePublished":"2025-01-22T20:24:50+00:00","dateModified":"2025-02-25T20:26:32+00:00","author":{"@id":"https:\/\/www.eldorado.org.br\/#\/schema\/person\/afa7570d748d4cedaae125f8ca50afab"},"breadcrumb":{"@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#primaryimage","url":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg","contentUrl":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/shutterstock_2410359213-3-2048x1026-1.jpg","width":2048,"height":1026},{"@type":"BreadcrumbList","@id":"https:\/\/www.eldorado.org.br\/blog\/essential-fundamentals-for-getting-started-with-api-test-automation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.eldorado.org.br\/en\/"},{"@type":"ListItem","position":2,"name":"Essential Fundamentals for Getting Started with API Test Automation"}]},{"@type":"WebSite","@id":"https:\/\/www.eldorado.org.br\/#website","url":"https:\/\/www.eldorado.org.br\/","name":"Instituto Eldorado","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.eldorado.org.br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.eldorado.org.br\/#\/schema\/person\/afa7570d748d4cedaae125f8ca50afab","name":"Adriany Gra\u00e7as de Souza","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.eldorado.org.br\/#\/schema\/person\/image\/a20db1255b7611650f72b6888a902e04","url":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/1737559114_9396c1_eu-150x150.jpg","contentUrl":"https:\/\/www.eldorado.org.br\/wp-content\/uploads\/2025\/01\/1737559114_9396c1_eu-150x150.jpg","caption":"Adriany Gra\u00e7as de Souza"}}]}},"_links":{"self":[{"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/posts\/73542","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/users\/93"}],"replies":[{"embeddable":true,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/comments?post=73542"}],"version-history":[{"count":1,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/posts\/73542\/revisions"}],"predecessor-version":[{"id":73545,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/posts\/73542\/revisions\/73545"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/media\/73546"}],"wp:attachment":[{"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/media?parent=73542"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/categories?post=73542"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/tags?post=73542"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.eldorado.org.br\/en\/wp-json\/wp\/v2\/coauthors?post=73542"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}