Here is a simple example of calling the Skriv API using the PHP language.
This example prints the name of a project.
<?php // parameters - set the right values $orgId = XXX; $projectId = YYY; $pubKey = 'public-key'; $privKey = 'private-key'; $url = "https://api.skriv.com/1/project/get/$orgId/$projectId"; // execute the request // print the project name print($data['name']);