Using our API
Last updated 2022-12-05
Our entire console is built API-first — this means that anything we can do, you can do as well via our API, which is fully documented here.
We’ve seen customers use our API a number of ways, but a common use case is importing our request data into a SIEM like Splunk or Kibana which can allow you to more easily correlate our security data with your internal data.
TIP
We offer a Terraform provider.
About API access tokens
Users can connect to the API by creating and using personal API access tokens. Authenticate against our API using your email and access token.
By default, all users have the ability to create and use API access tokens. However, Owners can choose to restrict API Access Token creation and usage to specific users. All plans allow you to create up to 5 access tokens per user.
Managing API access tokens
Follow these steps when managing API access tokens.
Creating API access tokens
From the My Profile menu, select API access tokens.
Click Add API access token.
In the Token name field, enter a name to identify the access token.
Click Create API access token.
Record the token in a secure location for your use.
IMPORTANT
This is the only time the token will be visible. Record the token and keep it secure. For your security, it will not appear in the console.
Click Continue to finish creating the token.
Restricting user permission to create and use API access tokens
Owners can restrict all users from creating and using API access tokens. After doing so, Owners can then manually grant specific users permission to create and use API access tokens.
API access tokens that were created before restrictions were activated will not be deleted. However, the users with existing tokens will need to be given permission to use API access tokens. Until a user is again granted permission to use API access tokens, the token will remain in a disabled state. After a user has been granted permission, the console will remember that permission moving forward.
Owners can enable API Access Token restrictions by following these steps:
- From the Corp Manage menu, select User Authentication.
- Navigate to the API access tokens section.
- In the Access token permissions field, select the Restrict access by user option. A message will be displayed warning you about this setting and its restrictions.
- Click Continue to proceed.
- Click Update API access tokens to save this change.
Granting Users Permission to Create and Use API access tokens
When API Access Token creation and usage is restricted, only Owners can enable other users to create API access tokens.
NOTE
After restricting API Access Token usage, Owners will also need to grant themselves permission to create and use API access tokens.
- From the Corp Manage menu, select Corp Users.
- Click on the user you want to grant permission to.
- Click Edit corp user.
- Under the Authentication section, select the Allow this user to create API access tokens checkbox.
- Click Update user.
Deleting API access tokens
- From the My Profile menu, select API access tokens.
- Click the Delete link to the right of the token you want to delete.
- Click the Delete button to confirm you want to delete the token.
Viewing Personal API Tokens
Owners can view a table of all access tokens across your corp by going to the Corp Manage menu and selecting API access tokens. This table shows the various statuses of each token (active, expired, disabled by owner), their creators, IPs they were used by, and expiration dates.
Managing Corporation-Wide API Access Token Settings
Follow these steps when managing corporation-wide API access token settings.
Setting Automatic Token Expirations
Owners can set API access tokens to automatically expire after a set period of time.
From the Corp Manage menu, select User Authentication.
Navigate to the API access tokens section.
In the Access token expiration, select the Custom expiration option.
Select one of the default periods of time, or select Custom to set a specific custom period of time.
The expiration is based on the creation date of the token itself, not from the start of the expiration policy. For example if there's a 60-day-old token and you set a 30-day expiration policy, the token will instantly be expired. But if you later switch the expiration to 90 days, the token will be un-expired.
Click Update API access tokens.
Restricting API Access Token Usage by IP
Owners can restrict the use of API access tokens to specific IP addresses.
- From the Corp Manage menu, select User Authentication.
- Navigate to the API access tokens section.
- In the Restrict usage by IP (optional) field, enter the IP addresses and IP ranges you want to limit token usage to. Enter each IP address on a new line.
- Click Update API access tokens.
Using Personal API access tokens
Golang
1package main2
3import (4 "encoding/json"5 "fmt"6 "io/ioutil"7 "log"8 "net/http"9 "os"10 "time"11)12
13var (14 // Defines the API endpoint15 endpoint = "https://dashboard.signalsciences.net/api/v0"16 email = os.Getenv("SIGSCI_EMAIL")17 token = os.Getenv("SIGSCI_TOKEN")18)19
20// Corp is a Signal Sciences corp21type Corp struct {22 Name string23 DisplayName string24 SmallIconURI string25 Created time.Time26 SiteLimit int27 Sites struct {28 URI string29 }30 AuthType string31 MFAEncorced bool32}33
34// CorpResponse is the response from the Signal Sciences API35// containing the corp data.36type CorpResponse struct {37 Data []Corp38}39
40func main() {41 // No need for timestamps or anything42 log.SetFlags(0)43
44 // Get corps45 req, err := http.NewRequest("GET", endpoint+"/corps", nil)46 if err != nil {47 log.Fatal(err)48 }49
50 // Set headers51 req.Header.Set("x-api-user", email)52 req.Header.Set("x-api-token", token)53 req.Header.Set("Content-Type", "application/json")54 req.Header.Add("User-Agent", "SigSci Go-Example")55
56 // Make request57 var transport http.RoundTripper = &http.Transport{}58 response, err := transport.RoundTrip(req)59 if err != nil {60 log.Fatal(fmt.Sprintf("Error connecting to API: %v", err))61 }62 defer response.Body.Close()63
64 payload, err := ioutil.ReadAll(response.Body)65 if err != nil {66 log.Fatal(fmt.Sprintf("Unable to read API response: %v", err))67 }68
69 if response.StatusCode != http.StatusOK {70 log.Fatal(fmt.Sprintf("API request failed, status: %d, resp: %s", response.StatusCode, payload))71 }72
73 var corpResp CorpResponse74 err = json.Unmarshal(payload, &corpResp)75 if err != nil {76 log.Fatal(err)77 }78
79 // Print out corp data80 fmt.Printf("%+v\n", corpResp.Data)81}
Python
1import requests, os2
3# Initial setup4
5endpoint = 'https://dashboard.signalsciences.net/api/v0'6email = os.environ.get('SIGSCI_EMAIL')7token = os.environ.get('SIGSCI_TOKEN')8
9# Fetch list of corps10
11headers = {12 'Content-type': 'application/json',13 'x-api-user': email,14 'x-api-token': token15}16corps = requests.get(endpoint + '/corps', headers=headers)17print corps.text
Ruby
1require 'net/http'2require 'json'3
4# Initial setup5
6endpoint = "https://dashboard.signalsciences.net/api/v0"7email = ENV['SIGSCI_EMAIL']8token = ENV['SIGSCI_TOKEN']9
10# Fetch list of corps11
12corps_uri = URI(endpoint + "/corps")13
14http = Net::HTTP.new(corps_uri.host, corps_uri.port)15http.use_ssl = true16
17request = Net::HTTP::Get.new(corps_uri.request_uri)18request["x-api-user"] = email19request["x-api-token"] = token20request["Content-Type"] = "application/json"21
22response = http.request(request)23puts response.body
Shell
$ curl -H "x-api-user:$SIGSCI_EMAIL" -H "x-api-token:$ACCESS_TOKEN" -H "Content-Type: application/json" https://dashboard.signalsciences.net/api/v0/corps
Do not use this form to send sensitive information. If you need assistance, contact support. This form is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.