Benefits

Quick Setup

Skopenow seamlessly supports current workflows. Start getting results in minutes, not days or weeks.

Rapid Results

No unnecessary waiting or lackluster response times. Data is sent immediately when available.

Quality Support

Skopenow extends its same industry-leading service and support to all API customers.

Capabilities

Skopenow’s Pre-Check API delivers automated, large-scale risk and threat flags, in addition to other due diligence capabilities. Skopenow also delivers Workbench via API for creating and retrieving people and business reports.

Easy to Integrate

Skopenow's REST API uses industry-standard authentication and error handling, with results delivered in JSON format.

Flexibility

Integrate using a variety of popular methods such as PHP, cURL, and Node. For any questions around integration capabilities, get in touch with our team here.

  • PHP
  • cURL
  • Node
    

      require 'vendor/autoload.php';

      // Create a client to work with Skopenow API
      $skopenow = new GuzzleHttpClient(
          [
              'base_uri' => 'https://api.skopenow.com/v1/',
              'headers' => [
                  'Content-Type' => 'application/json',
                  'x-api-key' => 'API-KEY-HERE',
              ]
          ]
      );
      try {
        // Test Search
        $request = [
          "inputs" => [
            "name" => ["Robert James"],
            "location" => ["Oyster Bay, NY"]
          ],
          "output" => [
            "type" => "json",
            "destination" => "url",
            "url" => "http://requestb.in/123456"
          ]
        ];
        $response = $skopenow->post("search", ['json' => $request]);

        echo $response->getBody();

      } catch (Exception $e) {
        // Failed
        echo $e->getMessage();
      }


    
      

curl -X POST -H "x-api-key: API-KEY-HERE" -H "Content-Type: application/json" -d '{ "inputs" : { "name" : ["Robert James"], "location" : ["Oyster Bay, NY"] }, "output" : { "type" : "json", "destination" : "url", "url": "http://requestb.in/123456" } }' "https://api.skopenow.com/v1/search"
   

var rest = require('restler'); var skopenow = new rest.Service({ baseURL: 'https://api.skopenow.com/v1/', headers: { 'Content-Type': 'application/json', 'x-api-key': 'API-KEY-HERE', } }); // Test Search var request = { "inputs": { "name": ["Robert James"], "location": ["Oyster Bay, NY"] }, "output": { "type": "json", "destination": "url", "url": "http://requestb.in/123456" } }; skopenow.json("POST","search", request).on('success', function(data, response) { // Succeeded console.log(data) }).on('error', function(err, response) { // Failed console.log(err); });

Unlock the Power of Skopenow

See for yourself how Skopenow can modernize your investigations. 
To get started, request a demo and an expert will get in touch with you shortly.

Book a Demo