Provides detailed information about an project, including the project name and associated tags. The project parameter requires the project hash, which can be obtained using the project.overview method.
Result
The result contains information about the project corresponding to the given hash. It includes the project's identifying hash (hash) and name (name). Additionally, the project contains a list of tags, each with its corresponding name (name) and hash (hash).GET-Parameters
Parameters (Mandatory)
api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
project
STRING
Specifies the unique hash used to identify a specific project. This hash can be obtained through the project.overview method.
Parameters (Optional)
format
STRING
Specifies whether the response will be returned in XML or JSON format. By default, the result will be in XML format.
To be able to use the API documentation with real data, you have to create an API key in your account.
EXAMPLE
$baseUrl = "https://api.sistrix.com/project.onpage";
$post = [
];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $baseUrl);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($curl);
curl_close($curl);
import requests
baseUrl = 'https://api.sistrix.com/project.onpage'
post = {
}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/project.onpage \
let baseUrl = 'https://api.sistrix.com/project.onpage';
let form = new FormData();
fetch(baseUrl, {
method: 'POST',
body: form
}).then(function(response){
return response.text();
}).then(function(data){
//data contains the results of the request
})