This is the fast-track for all developers who wants be finished in no time.
Detailed documentation of the Recorder JS which is responsible for recording all keystrokes.
The full reference of the KeyTrac API. Dig in, and learn how to use it with your application.
Create all necessary source code snippets using our simple request wizard.
# In case you are using the commandline tool curl to communicate with KeyTrac API.
# For more information visit https://curl.haxx.se
curl -d "" -H "Authorization: <<YOUR AUTHENTICATION TOKEN>>" https://api.keytrac.net/users
// In case you are using the Unirest PHP client to communicate with KeyTrac API.
// For more information visit http://unirest.io/
require_once "/path/to/unirest-php/src/Unirest.php";
$headers = array("Authorization" => "<<YOUR AUTHENTICATION TOKEN>>");
$response = Unirest\Request::post("https://api.keytrac.net/users", $headers);
echo($response->raw_body);
# In case you are using the Unirest Ruby client to communicate with KeyTrac API.
# For more information visit http://unirest.io/
require "unirest"
headers = {"Authorization" => "<<YOUR AUTHENTICATION TOKEN>>"}
response = Unirest.post("https://api.keytrac.net/users", headers: headers)
puts response.body
# In case you are using the Unirest Python client to communicate with KeyTrac API.
# For more information visit http://unirest.io/
import unirest
headers = {"Authorization":"<<YOUR AUTHENTICATION TOKEN>>"}
response = unirest.post('https://api.keytrac.net/users', headers=headers)
print(response.raw_body)
// In case you are using the Unirest Java client to communicate with KeyTrac API.
// For more information visit http://unirest.io/
import com.mashape.unirest.http.*;
import com.mashape.unirest.http.exceptions.UnirestException;
public class KeyTrac {
public static void main(String[] args) throws UnirestException {
HttpResponse<JsonNode> response = Unirest.post("https://api.keytrac.net/users")
.header("Authorization", "<<YOUR AUTHENTICATION TOKEN>>")
.asJson();
System.out.println(response.getBody());
}
}
// In case you are using the Unirest .NET client to communicate with KeyTrac API.
// For more information visit http://unirest.io/
using System;
using unirest_net.http;
class KeyTrac {
public static void Main (string[] args) {
HttpResponse<String> response = Unirest.post("https://api.keytrac.net/users")
.header("Authorization", "<<YOUR AUTHENTICATION TOKEN>>")
.asJson<String>();
Console.WriteLine(response.Body);
}
}
// In case you are using the Unirest Node.js client to communicate with KeyTrac API.
// For more information visit http://unirest.io/
var unirest = require("unirest");
unirest.post("https://api.keytrac.net/users")
.headers({"Authorization": "<<YOUR AUTHENTICATION TOKEN>>"})
.end(function (response) {
console.log(response.body);
});
// In case you are using the Unirest Go client to communicate with KeyTrac API.
// For more information visit https://github.com/apimatic/unirest-go
package main
import (
"fmt"
"github.com/apimatic/unirest-go"
)
func main() {
headers := map[string]interface{}{"Authorization": "<<YOUR AUTHENTICATION TOKEN>>"}
response, err := unirest.AsBinary(unirest.Post("https://api.keytrac.net/users", headers, nil))
if err != nil {
panic(err)
}
fmt.Printf("%s\n", response.RawBody)
}