{"id":2814,"date":"2022-07-13T09:39:49","date_gmt":"2022-07-13T09:39:49","guid":{"rendered":"https:\/\/www.reloadly.com\/blog\/?p=2814"},"modified":"2022-07-13T09:41:01","modified_gmt":"2022-07-13T09:41:01","slug":"how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account","status":"publish","type":"post","link":"https:\/\/reloadly.com\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/","title":{"rendered":"How to fetch transaction data for all the bill payments made on your account"},"content":{"rendered":"\n<p>Keeping track of your bill payments is important, especially if you pay different bills for various services over an amount of time. This guide will walk you through how to achieve this. Steps to be followed in this guide are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Getting your access token for the utility payment service<\/li><li>Retrieving your bill payment transaction details<\/li><\/ul>\n\n\n\n<p><em>You can get your access token by following the steps in this <\/em><a href=\"https:\/\/developers.reloadly.com\/utility-payments\/quickstart\"><em>quickstart<\/em><\/a><em>.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Retrieving bill payment transaction details<\/h3>\n\n\n\n<p>Assuming you want to view bill payment transaction details for your account , you can achieve this by making a request to Reloadly\u2019s Utility Payments API. The cURL code snippet below shows how you can achieve this:<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -i -X GET \\\n  'https:\/\/utilities-sandbox.reloadly.com\/transactions' \\\n  -H 'Authorization: Bearer &lt;YOUR_TOKEN_HERE&gt;'\n<\/code><\/pre>\n\n\n\n<div style=\"height:42px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If successful, you will receive a JSON snippet containing details of all the utility payments ever made on your account<\/p>\n\n\n\n<div style=\"height:41px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"content\": &#091;\n      {\n        \"code\": \"PAYMENT_PROCESSED_SUCCESSFULLY\",\n        \"message\": \"The payment was processed successfully\",\n        \"transaction\": {\n          \"id\": 108,\n          \"status\": \"SUCCESSFUL\",\n          \"referenceId\": \"may-electricity-bill\",\n          \"amount\": 1000,\n          \"amountCurrencyCode\": \"NGN\",\n          \"deliveryAmount\": 1000,\n          \"deliveryAmountCurrencyCode\": \"NGN\",\n          \"fee\": 1198.32797,\n          \"feeCurrencyCode\": \"NGN\",\n          \"discount\": 0,\n          \"discountCurrencyCode\": \"NGN\",\n          \"submittedAt\": \"2022-07-05 12:28:07\",\n          \"balanceInfo\": {\n            \"oldBalance\": 792671.04742,\n            \"newBalance\": 790472.71945,\n            \"cost\": 2198.32797,\n            \"currencyCode\": \"NGN\",\n            \"currencyName\": \"Nigerian Naira\",\n            \"updatedAt\": \"2022-07-05 16:28:07\"\n          },\n          \"billDetails\": {\n            \"type\": \"ELECTRICITY_BILL_PAYMENT\",\n            \"billerId\": 5,\n            \"billerName\": \"Ikeja Electricity Prepaid\",\n            \"billerCountryCode\": \"NG\",\n            \"serviceType\": \"PREPAID\",\n            \"completedAt\": \"2022-07-05 12:28:37\",\n            \"subscriberDetails\": {\n              \"accountNumber\": \"4223568280\"\n            },\n            \"pinDetails\": {\n              \"token\": \"4836-2318-0748-3623-1807\",\n              \"info1\": null,\n              \"info2\": null,\n              \"info3\": null\n            }\n          }\n        }\n      },\n      {\n        \"code\": \"PAYMENT_PROCESSED_SUCCESSFULLY\",\n        \"message\": \"The payment was processed successfully\",\n        \"transaction\": {\n          \"id\": 107,\n          \"status\": \"SUCCESSFUL\",\n          \"referenceId\": \"april-electricity-bill\",\n          \"amount\": 1000,\n          \"amountCurrencyCode\": \"NGN\",\n          \"deliveryAmount\": 1000,\n          \"deliveryAmountCurrencyCode\": \"NGN\",\n          \"fee\": 1198.32797,\n          \"feeCurrencyCode\": \"NGN\",\n          \"discount\": 0,\n          \"discountCurrencyCode\": \"NGN\",\n          \"submittedAt\": \"2022-07-05 10:55:03\",\n          \"balanceInfo\": {\n            \"oldBalance\": 794869.37539,\n            \"newBalance\": 792671.04742,\n            \"cost\": 2198.32797,\n            \"currencyCode\": \"NGN\",\n            \"currencyName\": \"Nigerian Naira\",\n            \"updatedAt\": \"2022-07-05 14:55:03\"\n          },\n          \"billDetails\": {\n            \"type\": \"ELECTRICITY_BILL_PAYMENT\",\n            \"billerId\": 5,\n            \"billerName\": \"Ikeja Electricity Prepaid\",\n            \"billerCountryCode\": \"NG\",\n            \"serviceType\": \"PREPAID\",\n            \"completedAt\": \"2022-07-05 10:55:05\",\n            \"subscriberDetails\": {\n              \"accountNumber\": \"4223568280\"\n            },\n            \"pinDetails\": {\n              \"token\": \"3717-9007-1537-1790-0715\",\n              \"info1\": null,\n              \"info2\": null,\n              \"info3\": null\n            }\n          }\n        }\n      }\n    ],\n    \"pageable\": {\n      \"sort\": {\n        \"sorted\": false,\n        \"unsorted\": true,\n        \"empty\": true\n      },\n      \"pageNumber\": 0,\n      \"pageSize\": 20,\n      \"offset\": 0,\n      \"unpaged\": false,\n      \"paged\": true\n    },\n    \"totalPages\": 1,\n    \"totalElements\": 4,\n    \"last\": true,\n    \"sort\": {\n      \"sorted\": false,\n      \"unsorted\": true,\n      \"empty\": true\n    },\n    \"numberOfElements\": 4,\n    \"first\": true,\n    \"size\": 20,\n    \"number\": 0,\n    \"empty\": false\n  }\n<\/code><\/pre>\n\n\n\n<div style=\"height:39px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Resources<\/h3>\n\n\n\n<p><a href=\"https:\/\/docs.reloadly.com\/\">Reloadly API<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/developers.reloadly.com\/\">Reloadly Developer Documentation<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to view periodic data for all your bill payment transactions . This guide was written with code samples in test mode. Code samples in responses may be abbreviated.<\/p>\n","protected":false},"author":17,"featured_media":2756,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[274],"tags":[277,405,314,407,406],"ppma_author":[359],"class_list":["post-2814","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-blog","tag-api","tag-bill","tag-developers","tag-transaction","tag-utility"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to fetch transaction data for all the bill payments made on your account - Reloadly Blog<\/title>\n<meta name=\"description\" content=\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to fetch transaction data for all the bill payments made on your account - Reloadly Blog\" \/>\n<meta property=\"og:description\" content=\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\" \/>\n<meta property=\"og:url\" content=\"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/\" \/>\n<meta property=\"og:site_name\" content=\"Reloadly Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-13T09:39:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-13T09:41:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png\" \/>\n\t<meta property=\"og:image:width\" content=\"641\" \/>\n\t<meta property=\"og:image:height\" content=\"334\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Raphael Ugwu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Raphael Ugwu\" \/>\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:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/\"},\"author\":{\"name\":\"Raphael Ugwu\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/18eaaac484ba8d8f4d59940e923f4954\"},\"headline\":\"How to fetch transaction data for all the bill payments made on your account\",\"datePublished\":\"2022-07-13T09:39:49+00:00\",\"dateModified\":\"2022-07-13T09:41:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/\"},\"wordCount\":150,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"keywords\":[\"api\",\"bill\",\"developers\",\"transaction\",\"utility\"],\"articleSection\":[\"Developer Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/\",\"url\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/\",\"name\":\"How to fetch transaction data for all the bill payments made on your account - Reloadly Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"datePublished\":\"2022-07-13T09:39:49+00:00\",\"dateModified\":\"2022-07-13T09:41:01+00:00\",\"description\":\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"contentUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"width\":641,\"height\":334},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to fetch transaction data for all the bill payments made on your account\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/\",\"name\":\"Reloadly Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#organization\",\"name\":\"Reloadly\",\"url\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/logo-1.svg\",\"contentUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/logo-1.svg\",\"width\":100,\"height\":100,\"caption\":\"Reloadly\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/18eaaac484ba8d8f4d59940e923f4954\",\"name\":\"Raphael Ugwu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g64f921045402e9b44a3fe0f4c884aa1f\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g\",\"caption\":\"Raphael Ugwu\"},\"url\":\"https:\\\/\\\/reloadly.com\\\/blog\\\/author\\\/fullstackmafia\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to fetch transaction data for all the bill payments made on your account - Reloadly Blog","description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","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:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/","og_locale":"en_US","og_type":"article","og_title":"How to fetch transaction data for all the bill payments made on your account - Reloadly Blog","og_description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","og_url":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/","og_site_name":"Reloadly Blog","article_published_time":"2022-07-13T09:39:49+00:00","article_modified_time":"2022-07-13T09:41:01+00:00","og_image":[{"width":641,"height":334,"url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","type":"image\/png"}],"author":"Raphael Ugwu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Raphael Ugwu","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#article","isPartOf":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/"},"author":{"name":"Raphael Ugwu","@id":"https:\/\/blog.reloadly.com\/blog\/#\/schema\/person\/18eaaac484ba8d8f4d59940e923f4954"},"headline":"How to fetch transaction data for all the bill payments made on your account","datePublished":"2022-07-13T09:39:49+00:00","dateModified":"2022-07-13T09:41:01+00:00","mainEntityOfPage":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/"},"wordCount":150,"commentCount":1,"publisher":{"@id":"https:\/\/blog.reloadly.com\/blog\/#organization"},"image":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","keywords":["api","bill","developers","transaction","utility"],"articleSection":["Developer Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/","url":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/","name":"How to fetch transaction data for all the bill payments made on your account - Reloadly Blog","isPartOf":{"@id":"https:\/\/blog.reloadly.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#primaryimage"},"image":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","datePublished":"2022-07-13T09:39:49+00:00","dateModified":"2022-07-13T09:41:01+00:00","description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","breadcrumb":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#primaryimage","url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","contentUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","width":641,"height":334},{"@type":"BreadcrumbList","@id":"https:\/\/127.0.0.1\/blog\/how-to-fetch-transaction-data-for-all-the-bill-payments-made-on-your-account\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/127.0.0.1\/blog\/"},{"@type":"ListItem","position":2,"name":"How to fetch transaction data for all the bill payments made on your account"}]},{"@type":"WebSite","@id":"https:\/\/blog.reloadly.com\/blog\/#website","url":"https:\/\/blog.reloadly.com\/blog\/","name":"Reloadly Blog","description":"","publisher":{"@id":"https:\/\/blog.reloadly.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.reloadly.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blog.reloadly.com\/blog\/#organization","name":"Reloadly","url":"https:\/\/blog.reloadly.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.reloadly.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2020\/11\/logo-1.svg","contentUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2020\/11\/logo-1.svg","width":100,"height":100,"caption":"Reloadly"},"image":{"@id":"https:\/\/blog.reloadly.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/blog.reloadly.com\/blog\/#\/schema\/person\/18eaaac484ba8d8f4d59940e923f4954","name":"Raphael Ugwu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g64f921045402e9b44a3fe0f4c884aa1f","url":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g","caption":"Raphael Ugwu"},"url":"https:\/\/reloadly.com\/blog\/author\/fullstackmafia\/"}]}},"jetpack_featured_media_url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","authors":[{"term_id":359,"user_id":17,"is_guest":0,"slug":"fullstackmafia","display_name":"Raphael Ugwu","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2814","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/comments?post=2814"}],"version-history":[{"count":2,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2814\/revisions"}],"predecessor-version":[{"id":2816,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2814\/revisions\/2816"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/media\/2756"}],"wp:attachment":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/media?parent=2814"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/categories?post=2814"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/tags?post=2814"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=2814"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}