{"id":1230,"date":"2016-10-07T11:15:53","date_gmt":"2016-10-07T11:15:53","guid":{"rendered":"http:\/\/poeditor.com\/blog\/?p=1230"},"modified":"2025-02-07T07:45:07","modified_gmt":"2025-02-07T07:45:07","slug":"automating-localization-workflow-poeditor-api-quick-guide","status":"publish","type":"post","link":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/","title":{"rendered":"Automating your localization workflow with POEditor API &#8211; Quick Guide"},"content":{"rendered":"\n<p>Whenever you get&nbsp;the chance to automate something to avoid repetitive manual work, go for it, because it will save you a lot&nbsp;of time and boost your productivity.&nbsp;That being said, let&#8217;s cut to the chase: the purpose of this article is to&nbsp;show you how to automate your localization workflow with the&nbsp;POEditor API. For this, we&#8217;ll go through a simple step by step guide. You&#8217;ll learn how to send&nbsp;your language data to POEditor and how to pull the translated work back into your software.<\/p>\n\n\n\n<p>Knowledge of a programming language is required&nbsp;(any will do), but we&#8217;ll&nbsp;focus&nbsp;on the requests you need to make to the API.<\/p>\n\n\n\n<p>All the information about the API is in the <a href=\"\/docs\/api\">API Reference<\/a>.<\/p>\n\n\n\n<p>Before starting the actual work, get an&nbsp;API token from your POEditor account. You can find it&nbsp;in Account Settings &gt; API Access.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Project setup<\/h3>\n\n\n\n<p>The first step is to create a project. Note that you need to do this only&nbsp;once and that you can also use the interface. It&#8217;s probably faster anyway.<\/p>\n\n\n\n<p><strong>Create a project:<\/strong><\/p>\n\n\n\n<p><code>curl -X POST https:\/\/api.poeditor.com\/v2\/projects\/add \\<br> -d api_token=\"e9eccebeccfr9wed638eb35f5e2d5600\" \\<br> -d name=\"Quick Guide\"<\/code><\/p>\n\n\n\n<!--more-->\n\n\n\n<p>You&#8217;ll need a name for this. The response will contain the new project ID (the item key from your response JSON). You&#8217;ll need this&nbsp;on future requests, so the system&nbsp;knows what project you&#8217;re referring to. The answer will look like this:<\/p>\n\n\n\n<p><code>{\"response\":{\"status\":\"success\",\"code\":\"200\",\"message\":\"Project created.\"},<br> \"result\":{\"project\":{\"id\":76197,\"name\":\"Quick Guide\",\"description\":\"\",\"public\":0,\"open\":0,<br> \"reference_language\":\"\",\"terms\":0,\"created\":\"2017-06-21T12:22:59+0000\"}}}<br> <\/code><\/p>\n\n\n\n<p>Next step: <strong>add some languages to the project<\/strong>. Let&#8217;s say your&nbsp;software&#8217;s in English and you need to translate it in French and Spanish.<\/p>\n\n\n\n<p><code>curl -X POST https:\/\/api.poeditor.com\/v2\/languages\/add \\<br> -d api_token=\"e9eccebeccfr9wed638eb35f5e2d5600\" \\<br> -d id=\"76197\" \\<br> -d language=\"en\"<\/code><\/p>\n\n\n\n<p>For this, you need\u00a0the\u00a0project ID you got earlier and the language code. Check out\u00a0a list of language codes <a href=\"\/docs\/languages\">here<\/a> or make a request to the API to get the full list using the <a href=\"\/docs\/api#languages_available\">available languages<\/a> method.<br>A\u00a0success response will show up:<\/p>\n\n\n\n<p><code>{\"response\":{\"status\":\"success\",\"code\":\"200\",\"message\":\"Language was added: English [en]\"}}<\/code><\/p>\n\n\n\n<p>Do the same for &#8220;fr&#8221; and &#8220;es&#8221; language codes. Afterwards, you can check like this:<\/p>\n\n\n\n<p><code>curl -X POST https:\/\/api.poeditor.com\/v2\/languages\/list \\<br> -d api_token=\"e9eccebeccfr9wed638eb35f5e2d5600\" \\<br> -d id=\"76197\"<\/code><\/p>\n\n\n\n<p>The response should be:<\/p>\n\n\n\n<p><code>{\"response\":{\"status\":\"success\",\"code\":\"200\",\"message\":\"OK\"},\"result\":{\"languages\":<br> [{\"name\":\"English\",\"code\":\"en\",\"translations\":0,\"percentage\":0,\"updated\":\"\"},<br> {\"name\":\"French\",\"code\":\"fr\",\"translations\":0,\"percentage\":0,\"updated\":\"\"}]}}<\/code><\/p>\n\n\n\n<p>You&#8217;re all set for now.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Push data to POEditor<\/h3>\n\n\n\n<p>Now&nbsp;you should&nbsp;populate the project with the data from your existing language file. To do that, you&#8217;ll need the path to the exiting language file and the ID of the project.<\/p>\n\n\n\n<p><code>curl -X POST https:\/\/api.poeditor.com\/v2\/projects\/upload \\<br> -F api_token=\"e9eccebeccfr9wed638eb35f5e2d5600\" \\<br> -F id=\"76197\" \\<br> -F updating=\"terms_definitions\" \\<br> -F language=\"en\" \\<br> -F file=@\"\/var\/www\/html\/en.properties\"<\/code><\/p>\n\n\n\n<p>The response will look like&nbsp;this:<\/p>\n\n\n\n<p><code>{\"response\":{\"status\":\"success\",\"code\":\"200\",\"message\":\"OK\"},\"details\":{<br> \"terms\":{\"parsed\":105,\"added\":105,\"deleted\":0},<br> \"definitions\":{\"parsed\":105,\"added\":105,\"updated\":0}}}<\/code><\/p>\n\n\n\n<p>You can see the system found 105 terms and 105 translations and it added all of them (because the project is empty at this point). If you run that request again, you&#8217;ll get in the response &#8216;parsed: 105&#8217; and &#8216;added: 0&#8217; (because they&#8217;re already in the project).<\/p>\n\n\n\n<p>Translation can begin now. Add your contributors, translate the project yourself, order human translations&#8230; your pick. Note that if your language file is label based, you can set a reference language (in this case English) so your translators don&#8217;t see labels but texts in a human language. This can be done from Project Settings in the interface or using the &#8220;<a href=\"\/docs\/api#projects_update\">project update<\/a>&#8221; method from API:<\/p>\n\n\n\n<p><code>curl -X https:\/\/api.poeditor.com\/v2\/projects\/update \\<br> -d api_token=\"e9eccebeccfr9wed638eb35f5e2d5600\" \\<br> -d id=\"76197\" \\<br> -d reference_language =\"en\"<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Pull translated languages from POEditor<\/h3>\n\n\n\n<p>After the translations are completed, you need to request the language files and save \/ update them in your software.<\/p>\n\n\n\n<p><code>curl -X POST https:\/\/api.poeditor.com\/v2\/projects\/export \\<br> -d api_token=\"e9eccebeccfr9wed638eb35f5e2d5600\" \\<br> -d id=\"76197\" \\<br> -d language=\"fr\" \\<br> -d type=\"properties\"<\/code><\/p>\n\n\n\n<p>In the response you&#8217;ll get a temporary link (it&nbsp;expires after 10 minutes) to a file with the contents you requested:<\/p>\n\n\n\n<p><code>{\"response\":{\"status\":\"success\",\"code\":\"200\",\"message\":\"OK\"},<br> \"result\":{\"url\":\"https:\\\/\\\/api.poeditor.com\\\/v2\\\/download\\\/file\\\/752e699a355e829a710623a37dd051c3\"}}<\/code><\/p>\n\n\n\n<p>It&#8217;s up to you how you get and save the content, with whatever naming you&#8217;re using in your project. Add this in a <code>foreach<\/code> with all the languages in your project and you&#8217;ll get your fully automated pull script.<\/p>\n\n\n\n<p>That&#8217;s it. You can even set a cronjob once a day and you&#8217;ll have updated language files automatically, without moving a finger.<br>If you host your code on GitHub, Bitbucket or GitLab, it&#8217;s even easier and you don&#8217;t have to write any code at all.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Whenever you get&nbsp;the chance to automate something to avoid repetitive manual work, go for it, because it will save you a lot&nbsp;of time and boost your productivity.&nbsp;That being said, let&#8217;s cut to the chase: the purpose of this article is to&nbsp;show you how to automate your localization workflow with the&nbsp;POEditor API. For this, we&#8217;ll go [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":1980,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-1230","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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Automating your localization process with POEditor API - Quick Guide<\/title>\n<meta name=\"description\" content=\"Learn how to automate your localization workflow with the POEditor API with a simple step by step guide. Translate apps, websites and other software fast.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automating your localization process with POEditor API - Quick Guide\" \/>\n<meta property=\"og:description\" content=\"Learn how to automate your localization workflow with the POEditor API with a simple step by step guide. Translate apps, websites and other software fast.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"POEditor Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/POEditor\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-07T11:15:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-07T07:45:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2020\/06\/Academic.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"418\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"POEditor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@poeditor\" \/>\n<meta name=\"twitter:site\" content=\"@poeditor\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"POEditor\" \/>\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:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/\"},\"author\":{\"name\":\"POEditor\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/person\\\/db77eb2d09539eaac83dcd8f2af06b17\"},\"headline\":\"Automating your localization workflow with POEditor API &#8211; Quick Guide\",\"datePublished\":\"2016-10-07T11:15:53+00:00\",\"dateModified\":\"2025-02-07T07:45:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/\"},\"wordCount\":643,\"publisher\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Academic.png\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/\",\"name\":\"Automating your localization process with POEditor API - Quick Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Academic.png\",\"datePublished\":\"2016-10-07T11:15:53+00:00\",\"dateModified\":\"2025-02-07T07:45:07+00:00\",\"description\":\"Learn how to automate your localization workflow with the POEditor API with a simple step by step guide. Translate apps, websites and other software fast.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Academic.png\",\"contentUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Academic.png\",\"width\":800,\"height\":418,\"caption\":\"POEditor\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/automating-localization-workflow-poeditor-api-quick-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automating your localization workflow with POEditor API &#8211; Quick Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/\",\"name\":\"POEditor Blog\",\"description\":\"All about translation and localization management\",\"publisher\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#organization\",\"name\":\"POEditor\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/logo_head_512_transparent.png\",\"contentUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/logo_head_512_transparent.png\",\"width\":512,\"height\":512,\"caption\":\"POEditor\"},\"image\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/POEditor\",\"https:\\\/\\\/x.com\\\/poeditor\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/poeditor\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCXAk1u8N49VRMAqNneENCFA\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/person\\\/db77eb2d09539eaac83dcd8f2af06b17\",\"name\":\"POEditor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/95bca2c465fe6134f210cb2f2fbed4f71bf37833fb285624320e808c865695c1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/95bca2c465fe6134f210cb2f2fbed4f71bf37833fb285624320e808c865695c1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/95bca2c465fe6134f210cb2f2fbed4f71bf37833fb285624320e808c865695c1?s=96&d=mm&r=g\",\"caption\":\"POEditor\"},\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/author\\\/poeditor\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Automating your localization process with POEditor API - Quick Guide","description":"Learn how to automate your localization workflow with the POEditor API with a simple step by step guide. Translate apps, websites and other software fast.","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:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/","og_locale":"en_US","og_type":"article","og_title":"Automating your localization process with POEditor API - Quick Guide","og_description":"Learn how to automate your localization workflow with the POEditor API with a simple step by step guide. Translate apps, websites and other software fast.","og_url":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/","og_site_name":"POEditor Blog","article_publisher":"https:\/\/www.facebook.com\/POEditor","article_published_time":"2016-10-07T11:15:53+00:00","article_modified_time":"2025-02-07T07:45:07+00:00","og_image":[{"width":800,"height":418,"url":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2020\/06\/Academic.png","type":"image\/png"}],"author":"POEditor","twitter_card":"summary_large_image","twitter_creator":"@poeditor","twitter_site":"@poeditor","twitter_misc":{"Written by":"POEditor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#article","isPartOf":{"@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/"},"author":{"name":"POEditor","@id":"https:\/\/poeditor.com\/blog\/#\/schema\/person\/db77eb2d09539eaac83dcd8f2af06b17"},"headline":"Automating your localization workflow with POEditor API &#8211; Quick Guide","datePublished":"2016-10-07T11:15:53+00:00","dateModified":"2025-02-07T07:45:07+00:00","mainEntityOfPage":{"@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/"},"wordCount":643,"publisher":{"@id":"https:\/\/poeditor.com\/blog\/#organization"},"image":{"@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2020\/06\/Academic.png","articleSection":["Tutorials"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/","url":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/","name":"Automating your localization process with POEditor API - Quick Guide","isPartOf":{"@id":"https:\/\/poeditor.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#primaryimage"},"image":{"@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2020\/06\/Academic.png","datePublished":"2016-10-07T11:15:53+00:00","dateModified":"2025-02-07T07:45:07+00:00","description":"Learn how to automate your localization workflow with the POEditor API with a simple step by step guide. Translate apps, websites and other software fast.","breadcrumb":{"@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#primaryimage","url":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2020\/06\/Academic.png","contentUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2020\/06\/Academic.png","width":800,"height":418,"caption":"POEditor"},{"@type":"BreadcrumbList","@id":"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/poeditor.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Automating your localization workflow with POEditor API &#8211; Quick Guide"}]},{"@type":"WebSite","@id":"https:\/\/poeditor.com\/blog\/#website","url":"https:\/\/poeditor.com\/blog\/","name":"POEditor Blog","description":"All about translation and localization management","publisher":{"@id":"https:\/\/poeditor.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/poeditor.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/poeditor.com\/blog\/#organization","name":"POEditor","url":"https:\/\/poeditor.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/poeditor.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/11\/logo_head_512_transparent.png","contentUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/11\/logo_head_512_transparent.png","width":512,"height":512,"caption":"POEditor"},"image":{"@id":"https:\/\/poeditor.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/POEditor","https:\/\/x.com\/poeditor","https:\/\/www.linkedin.com\/company\/poeditor\/","https:\/\/www.youtube.com\/channel\/UCXAk1u8N49VRMAqNneENCFA"]},{"@type":"Person","@id":"https:\/\/poeditor.com\/blog\/#\/schema\/person\/db77eb2d09539eaac83dcd8f2af06b17","name":"POEditor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/95bca2c465fe6134f210cb2f2fbed4f71bf37833fb285624320e808c865695c1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/95bca2c465fe6134f210cb2f2fbed4f71bf37833fb285624320e808c865695c1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/95bca2c465fe6134f210cb2f2fbed4f71bf37833fb285624320e808c865695c1?s=96&d=mm&r=g","caption":"POEditor"},"url":"https:\/\/poeditor.com\/blog\/author\/poeditor\/"}]}},"_links":{"self":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts\/1230","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/comments?post=1230"}],"version-history":[{"count":36,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts\/1230\/revisions"}],"predecessor-version":[{"id":5911,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts\/1230\/revisions\/5911"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/media\/1980"}],"wp:attachment":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/media?parent=1230"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/categories?post=1230"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/tags?post=1230"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}