{"id":2594,"date":"2022-03-07T16:55:33","date_gmt":"2022-03-07T16:55:33","guid":{"rendered":"https:\/\/www.reloadly.com\/blog\/?p=2594"},"modified":"2022-03-07T09:55:54","modified_gmt":"2022-03-07T09:55:54","slug":"specify-non-usd-sending-top-ups","status":"publish","type":"post","link":"https:\/\/reloadly.com\/blog\/specify-non-usd-sending-top-ups\/","title":{"rendered":"How to specify a Non-USD currency when sending top-ups"},"content":{"rendered":"\n<p>Your wallet contents are expressed in your local currency and, unless you specify differently, the quantity you specify for the topup will be used directly to deduct from your balance.<\/p>\n\n\n\n<p>For topups where both the sender and recipient use the same currency (Local topups being the most obvious case) this is fine but, in general, when sending international TopUps a currency conversion will need to take place.<\/p>\n\n\n\n<p>Don&#8217;t worry, Reloadly has you covered.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How does currency conversion work in Reloadly&#8217;s TopUps<\/h2>\n\n\n\n<p>In case your balance is expressed in a currency different to the one of the receiving party you have the option of asking Reloadly to make the conversion.<\/p>\n\n\n\n<p>For this Reloadly will use an exchange rate specific to the operator you&#8217;re sending credit to.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Specifiying the currency when sending a request<\/h2>\n\n\n\n<p>Let&#8217;s say you live in the US and you want to make a topup for a phone in Colombia and you want to use Colombian Peso to express the amount to be sent to the recipient.<\/p>\n\n\n\n<p>Let me illustrate this with an example to make things clearer.<\/p>\n\n\n\n<p>You want to make a COP 20,000 topup for <code>+57 301 4264205<\/code>. <\/p>\n\n\n\n<p>The sequence would be:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><a rel=\"noreferrer noopener\" href=\"https:\/\/docs.reloadly.com\/airtime\/quickstart#get-your-access-token\" target=\"_blank\">Get an authentication token<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/www.reloadly.com\/blog\/how-to-reloadly-automatically-detect-operator-id\/\" target=\"_blank\">Get the operator Id<\/a><\/li><li><a rel=\"noreferrer noopener\" href=\"https:\/\/docs.reloadly.com\/airtime\/top-ups\/top-up\" target=\"_blank\">Make the topup request<\/a><\/li><\/ol>\n\n\n\n<p>I&#8217;ll assume you know how to perform steps 1 and 2 (If not, just follow the appropriate links) and show you the details of step 3.<\/p>\n\n\n\n<p>Since you prefer the recipient to be credited a specific number in their own currency, you have to inform Reloadly about that by slightly changing the request you&#8217;d usually send.<\/p>\n\n\n\n<p>Simply use the <code>useLocalAmount<\/code> parameter. Like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">curl --location --request POST https:\/\/topups.reloadly.com\/topups --header 'Authorization: Bearer YOUR_ACCESS_TOKEN' --header 'Accept: application\/com.reloadly.topups-v1+json' --header 'Content-Type: application\/json' --data-raw '{\n                \"operatorId\":\"92\",\n                \"amount\":\"20000\",\n\t\t    \"useLocalAmount\": true,\n                \"recipientPhone\": {\n                        \"countryCode\": \"CO\",\n                        \"number\": \"573014264205\"\n                }\n        }<\/pre>\n\n\n\n<p>Which will produce an output similar to:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n  \"transactionId\": 27879,\n  \"status\": \"SUCCESSFUL\",\n  \"operatorTransactionId\": null,\n  \"customIdentifier\": null,\n  \"recipientPhone\": \"573014264205\",\n  \"recipientEmail\": null,\n  \"senderPhone\": null,\n  \"countryCode\": \"CO\",\n  \"operatorId\": 92,\n  \"operatorName\": \"Tigo Colombia\",\n  \"discount\": 0,\n  \"discountCurrencyCode\": \"EUR\",\n  \"requestedAmount\": 20000,\n  \"requestedAmountCurrencyCode\": \"COP\",\n  \"deliveredAmount\": 20000,\n  \"deliveredAmountCurrencyCode\": \"COP\",\n  \"transactionDate\": \"2022-03-02 11:06:23\",\n  \"pinDetail\": null,\n  \"balanceInfo\": {\n    \"oldBalance\": 766.814,\n    \"newBalance\": 755.85748,\n    \"currencyCode\": \"USD\",\n    \"currencyName\": \"US Dollar\",\n    \"updatedAt\": \"2022-03-02 16:06:23\"\n  }\n}<\/pre>\n\n\n\n<p>If you look at the bottom (<code>balanceInfo<\/code>) you&#8217;ll notice how the balance got affected after this transaction:<\/p>\n\n\n\n<p>Before sending the top-up it was USD 766.814 and after it is USD 755.85748.<\/p>\n\n\n\n<p>This means that the exchange rate for this particular operator is 1 USD = COP 1,825.38 (10.95652 USD = 20,000 COP). <\/p>\n\n\n\n<p><em><span style=\"text-decoration: underline;\">Note<\/span>: bear in mind that exchange rates are fluctuant so the exact<\/em> <em>numbers you&#8217;ll get when running this example might not be a perfect match for what you&#8217;re reading here but doesn&#8217;t mean you&#8217;re doing anything wrong<\/em>. <\/p>\n\n\n\n<p>There are times where you may want to know how many pesos the recipient will get for every USD deducted from your wallet before carrying the operation out.<\/p>\n\n\n\n<p>To find that out you can use the <a href=\"https:\/\/docs.reloadly.com\/airtime\/fx-rates\/fetch-fx-rate-by-operator-id\" target=\"_blank\" rel=\"noreferrer noopener\">Fetch FX Rate by Operator Id endpoint<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting the exchange rate applicable to a mobile Operator<\/h2>\n\n\n\n<p>What you&#8217;ll want to do is issue a request such as:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">curl --location --request POST https:\/\/topups.reloadly.com\/operators\/fx-rate --header 'Authorization: Bearer YOUR_ACCESS_TOKEN' --header 'Accept: application\/com.reloadly.topups-v1+json' --header 'Content-Type: application\/json' --data-raw '{\n        \"operatorId\":\"92\",\n                \"amount\":\"10\"\n        }'<\/pre>\n\n\n\n<p>Which will produce an output similar to:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n  \"id\": 92,\n  \"name\": \"Tigo Colombia\",\n  \"fxRate\": 18,2533.8,\n  \"currencyCode\": \"COP\"\n}<\/pre>\n\n\n\n<p>Which means when you send 10 USD to a phone operated by Tigo Colombia (Operator with ID 92), the recipient&#8217;s phone will be credited with 18,2533.8 Colombian Pesos.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you need to send topups internationally, a currency exchange need to be performed. Reloadly can do it for you&#8230;<\/p>\n","protected":false},"author":22,"featured_media":2599,"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":[346,347,14],"ppma_author":[361],"class_list":["post-2594","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-blog","tag-exchange-rate","tag-local-currency","tag-top-up-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to specify a Non-USD currency when sending top-ups - Reloadly Blog<\/title>\n<meta name=\"description\" content=\"Do you want to send topups using the recipient&#039;s local currency? Learn how to do that using Reloadly&#039;s API here.\" \/>\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.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to specify a Non-USD currency when sending top-ups - Reloadly Blog\" \/>\n<meta property=\"og:description\" content=\"Do you want to send topups using the recipient&#039;s local currency? Learn how to do that using Reloadly&#039;s API here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/\" \/>\n<meta property=\"og:site_name\" content=\"Reloadly Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-07T16:55:33+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/54.167.47.128\/wp-content\/uploads\/2022\/03\/blog_image45-01.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=\"Mauro Chojrin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mauro Chojrin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/\"},\"author\":{\"name\":\"Mauro Chojrin\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/2dd23f6de63ee3ef6002e1303f690b0d\"},\"headline\":\"How to specify a Non-USD currency when sending top-ups\",\"datePublished\":\"2022-03-07T16:55:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/\"},\"wordCount\":466,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/blog_image45-01.png\",\"keywords\":[\"exchange rate\",\"local currency\",\"top up api\"],\"articleSection\":[\"Developer Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/\",\"name\":\"How to specify a Non-USD currency when sending top-ups - Reloadly Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/blog_image45-01.png\",\"datePublished\":\"2022-03-07T16:55:33+00:00\",\"description\":\"Do you want to send topups using the recipient's local currency? Learn how to do that using Reloadly's API here.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/blog_image45-01.png\",\"contentUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/blog_image45-01.png\",\"width\":641,\"height\":334},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/specify-non-usd-sending-top-ups\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to specify a Non-USD currency when sending top-ups\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/\",\"name\":\"Reloadly Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#organization\",\"name\":\"Reloadly\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.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:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/2dd23f6de63ee3ef6002e1303f690b0d\",\"name\":\"Mauro Chojrin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?s=96&d=mm&r=g20f6f8ad33a47f3e29be1daa6bc5835a\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?s=96&d=mm&r=g\",\"caption\":\"Mauro Chojrin\"},\"url\":\"https:\\\/\\\/reloadly.com\\\/blog\\\/author\\\/mauro-chojrin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to specify a Non-USD currency when sending top-ups - Reloadly Blog","description":"Do you want to send topups using the recipient's local currency? Learn how to do that using Reloadly's API here.","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.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/","og_locale":"en_US","og_type":"article","og_title":"How to specify a Non-USD currency when sending top-ups - Reloadly Blog","og_description":"Do you want to send topups using the recipient's local currency? Learn how to do that using Reloadly's API here.","og_url":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/","og_site_name":"Reloadly Blog","article_published_time":"2022-03-07T16:55:33+00:00","og_image":[{"width":641,"height":334,"url":"http:\/\/54.167.47.128\/wp-content\/uploads\/2022\/03\/blog_image45-01.png","type":"image\/png"}],"author":"Mauro Chojrin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mauro Chojrin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#article","isPartOf":{"@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/"},"author":{"name":"Mauro Chojrin","@id":"https:\/\/www.reloadly.com\/blog\/#\/schema\/person\/2dd23f6de63ee3ef6002e1303f690b0d"},"headline":"How to specify a Non-USD currency when sending top-ups","datePublished":"2022-03-07T16:55:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/"},"wordCount":466,"commentCount":0,"publisher":{"@id":"https:\/\/www.reloadly.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/03\/blog_image45-01.png","keywords":["exchange rate","local currency","top up api"],"articleSection":["Developer Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/","url":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/","name":"How to specify a Non-USD currency when sending top-ups - Reloadly Blog","isPartOf":{"@id":"https:\/\/www.reloadly.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#primaryimage"},"image":{"@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/03\/blog_image45-01.png","datePublished":"2022-03-07T16:55:33+00:00","description":"Do you want to send topups using the recipient's local currency? Learn how to do that using Reloadly's API here.","breadcrumb":{"@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#primaryimage","url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/03\/blog_image45-01.png","contentUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/03\/blog_image45-01.png","width":641,"height":334},{"@type":"BreadcrumbList","@id":"https:\/\/www.reloadly.com\/blog\/specify-non-usd-sending-top-ups\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.reloadly.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to specify a Non-USD currency when sending top-ups"}]},{"@type":"WebSite","@id":"https:\/\/www.reloadly.com\/blog\/#website","url":"https:\/\/www.reloadly.com\/blog\/","name":"Reloadly Blog","description":"","publisher":{"@id":"https:\/\/www.reloadly.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.reloadly.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.reloadly.com\/blog\/#organization","name":"Reloadly","url":"https:\/\/www.reloadly.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.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:\/\/www.reloadly.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.reloadly.com\/blog\/#\/schema\/person\/2dd23f6de63ee3ef6002e1303f690b0d","name":"Mauro Chojrin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?s=96&d=mm&r=g20f6f8ad33a47f3e29be1daa6bc5835a","url":"https:\/\/secure.gravatar.com\/avatar\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?s=96&d=mm&r=g","caption":"Mauro Chojrin"},"url":"https:\/\/reloadly.com\/blog\/author\/mauro-chojrin\/"}]}},"jetpack_featured_media_url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/03\/blog_image45-01.png","authors":[{"term_id":361,"user_id":22,"is_guest":0,"slug":"mauro-chojrin","display_name":"Mauro Chojrin","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/7ebf4f71751034b32e4747bbc3b7e42723e1320b8c45cda722eb794bb356890d?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\/2594","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\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/comments?post=2594"}],"version-history":[{"count":4,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2594\/revisions"}],"predecessor-version":[{"id":2600,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2594\/revisions\/2600"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/media\/2599"}],"wp:attachment":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/media?parent=2594"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/categories?post=2594"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/tags?post=2594"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=2594"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}