Track your Crowdin project translation progress by language. Default response format is XML.
If successful, this method returns a XML structure, as shown below.
<?xml version="1.0" encoding="ISO-8859-1"?>
French
fr
20
10
5
50
25
Romanian
ro
20
0
0
0
0
Sample unsuccessful response:
<?xml version="1.0" encoding="ISO-8859-1"?>
3
API key is not valid
curl http://api.crowdin.net/api/project/{project-identifier}/status?key={project-key}&jsonp=mycallback
<?php
$request_url = 'http://api.crowdin.net/api/project/{project-identifier}/status?key={project-key}&xml';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
$result = curl_exec($ch);
curl_close($ch);
echo $result;