A Golang SDK for interacting with the Sayari graph API.
-
Using Homebrew:
brew install go
-
Verify the Installation:
go version
-
Download the Installer: Go to the Go downloads page and download the
.msi
file for Windows. -
Run the Installer: Double-click the downloaded
.msi
file and follow the installation steps. -
Verify the Installation: Open Command Prompt or PowerShell and run:
go version
Look in the 'example' directory to see how to use the SDK. This repository contains example scripts for interacting with the Sayari API, using the sayari-go
SDK. Each script demonstrates different API capabilities, such as entity resolution, load testing, pagination, and trade data searching.
- Go version 1.16+
- Set up environment variables (
CLIENT_ID
andCLIENT_SECRET
) for authentication. You can create a.env
file in the project root for this purpose. - This file should look like this (with values updated)
CLIENT_ID=YOUR_CLIENT_ID_HERE CLIENT_SECRET=YOUR_CLIENT_SECRET_HERE
All Example Scripts are available under the folder examples
This script demonstrates a basic connection to the Sayari API to resolve an entity by name. It:
- Loads client credentials from environment variables.
- Resolves a specified entity (e.g., "Victoria Beckham") and retrieves its entity details.
This example performs load testing on the Sayari API by sending multiple search requests simultaneously:
- Uses a worker pool and rate limiting to control the frequency of requests.
- Conducts random entity searches based on generated strings, which simulates a high volume of traffic to test API response under load.
Demonstrates how to handle pagination when querying large datasets:
- Executes searches and iterates over paginated results for entities and records.
- Retrieves data in multiple pages to ensure all available results are fetched without overload.
This script performs batch screening of entities based on data from a CSV file:
- Loads entities to screen from
entities_to_screen.csv
. - Screens entities for potential risks and categorizes results as risky, non-risky, or unresolved.
A comprehensive smoke test script that performs several API operations:
- Lists and retrieves information on sources.
- Searches for entities and records, retrieves detailed entity data, and explores watchlist and beneficial ownership data.
- Conducts relationship traversal and shortest-path analysis for selected entities.
- Verifies various endpoints to ensure overall API functionality.
This script explores trade-related data within the Sayari API, focusing on trade-specific searches:
- Searches for shipments, suppliers, and buyers based on a given query.
- Useful for retrieving trade and supplier information tied to specific keywords or entities.
Run each example using the following command:
go run examples/<example-file>.go
Replace with the desired script name (e.g., hello-world.go).
Ensure the .env file is configured correctly with your CLIENT_ID and CLIENT_SECRET. Some examples may depend on specific data in the API; modify search terms as needed for testing.
Please see our docs site for more info and or to get in touch with us.