PolySwarm Rest API v3
Rest API Endpoints for interacting with version 3 of the PolySwarm Customer APIs.
Getting Started
Using the API
PolySwarm's API provides a RESTful interface for various PolySwarm features. If you'd like to report an issue or provide feedback for this page, please contact [email protected]
The PolySwarm API is available at https://api.polyswarm.network/v3
For the rest of this document, the base API URL will not be included in any endpoints (e.g., the branch for search will be described as /v3/search
rather than https://api.polyswarm.network/v3/search)
. You will be responsible for adding the correct base API URL.
The overview of the API Endpoints will include required and optional parameters, with a curl example.
Authentication
Every API request must include an HTTP Authorization Header with an API key.
Locate the api_key
for the User/Team from here
HTTP Header | Value |
---|---|
Authorization | API Key |
Example:
curl -X GET -H "Authorization: $API_KEY" 'https://api.polyswarm.network/v3/search/url?url=https%3A%2F%2Fpolyswarm.io&community=default'
Artifact Lookup
To retrieve the results of a scan or sandbox, you can do an artifact lookup. In the scanning/sandboxing sections we will remind you of this.
GET /v3/consumer/submission/default{artifact_id}
Once the scan has completed the returned window_closed
value will be true
, if this value is false
then the scan is still processing, so you will need to poll periodically.
If the value failed
is true
then the scan has failed.
Scanning Artifacts
The following are the 3 sequential steps in a Scanning operation:
- POST Inform PolySwarm to start a scan, returns an
artifact_id
and pre signed AWS URL that the artifact can be uploaded to - PUT Upload the artifact to the AWS URL location
- PUT Inform PolySwarm that the artifact is uploaded and to start the scan
Lastly, lookup the artifact for the verdict, follow this process here.
URL Scanning
POST /v3/instance
Inform PolySwarm to start a scan, returns an
artifact_id
and pre signed AWS URL that the file/url can be uploaded to
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
artifact_name |
string | true | URL value to be scanned |
artifact_type |
string | true | Defines the type, should be URL |
scan_config |
string | false | Allows additional time for the scan, default if not provided, default , more-time , most-time |
url-file |
string | false | Path of the file containing a single line of the URL to be scanned |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X POST -d '{"artifact_name": "https://www.google.com", "artifact_type": "URL", "community": "default"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/instance
PUT https://s3.us-east-2.amazonaws.com/{PRE_SIGNED_AWS_URL}
Provide the artifact to upload to the AWS URL.
Query Sample
curl -X PUT '<PRE_SIGNED_AWS_URL>' -d 'content=www.google.com'
PUT /v3/instance
Inform PolySwarm the upload is complete and to start the scan.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
string | true | artifact_id that has been returned by the first POST command |
Query Sample
curl -X PUT -H "Content-Type: application/json" https://api.polyswarm.network/v3/instance?id=49722305458696948 -H "Authorization: $API_KEY"
Lastly, lookup the artifact for the verdict, follow this process here.
File Scanning
POST /v3/instance
Inform PolySwarm to start a scan, returns an
artifact_id
and pre signed AWS url that the file needs to be placed into.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
artifact_name |
string | true | Path of the File to be scanned |
artifact_type |
string | true | Defines the type, should be FILE |
scan_config |
string | false | Allows additional time for the scan, default if not provided, default , more-time , most-time |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X POST -d '{"artifact_name": "./test.zip", "artifact_type": "FILE", "community": "default"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/instance
PUT https://s3.us-east-2.amazonaws.com/{PRE_SIGNED_AWS_URL}
Provide the artifact to upload to the AWS URL.
Query Sample
curl --upload-file ./tests/eicar.yara "<PRE_SIGNED_AWS_URL>"
PUT /v3/instance
Inform PolySwarm the upload is complete and to start the scan.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
string | true | artifact_id that has been returned by the first POST command |
Query Sample
curl -X PUT https://api.polyswarm.network/v3/instance?id=49722305458696948 -H "Authorization: $API_KEY"
Lastly, lookup the artifact for the verdict, follow this process here.
Rescanning Artifacts
POST /v3/consumer/submission/default/rescan/sha256/{sha256}
Other Endpoints include:
/v3/consumer/submission/default/rescan/md5/{md5}
and/v3/consumer/submission/default/rescan/sha1/{sha1}
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
hash-type |
string | false | Hash type to be searched on, default is autodetect |
scan-config |
string | false | Configuration template to use, provides more time for the results to be returned, default , more-time , most-time |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X POST 'https://api.polyswarm.network/v3/consumer/submission/default/rescan/sha256/5da5a1e3983982a92341953929d4c7726da65fe5125d264dd8932a870f2f154a?community=default&scan_config=more-time' -H "Authorization: $API_KEY"
Lastly, lookup the artifact for the verdict, follow this process here.
Downloading
Download an Artifact
GET /v3/consumer/download/sha256/{sha256}
Other Endpoints include:
/v3/consumer/download/sha256/{md5}
and/v3/consumer/download/sha256/{sha1}
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
hash-type |
string | false | Hash type to be searched on, default is autodetect |
destination |
string | false | Local Path where to store the downloaded files |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/consumer/download/sha256/5da5a1e3983982a92341953929d4c7726da65fe5125d264dd8932a870f2f154a?community=default' -H "Authorization: $API_KEY"
Download via id
GET /v3/instance/download
Tip: Can be used to download reports and files from a sandbox detonation, see sandboxing sections to retrieve the
instance_id
.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
instance_id |
integer | true | instance_id of the item to download, often provided in the output of a previous query |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/instance/download?instance_id=84432173138232095' -H "Authorization: $API_KEY"
Searching
URL Searching
GET /v3/search/url
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
url |
string | true | URL value to be searched |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/search/url?url=https%3A%2F%2Fpolyswarm.io&community=default' -H "Authorization: $API_KEY"
Hash Searching
GET /v3/search/hash/sha256
Other Endpoints include:
/v3/search/hash/md5
and/v3/search/hash/sha1
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
hash |
string | true | Hash (sha256,md5 or sha1) value to be searched |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
hash-type |
string | false | Hash type to be searched on, default is autodetect |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/search/hash/sha256?hash=5da5a1e3983982a92341953929d4c7726da65fe5125d264dd8932a870f2f154a?community=default' -H "Authorization: $API_KEY"
Metadata Searching
GET /v3/search/metadata/query
To build out the metadata query, see this page.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
query |
string | true | Metadata query to search on |
include |
string | false | Metadata field to include in results |
exclude |
string | false | Metadata field to exclude in results |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/search/metadata/query?query=artifact.sha256:5da5a1e3983982a92341953929d4c7726da65fe5125d264dd8932a870f2f154a' -H "Authorization: $API_KEY"
IOC Searching
Search for Associated IOCs
GET /v3/ioc/sha256/{sha256}
Other Endpoints include:
/v3/ioc/md5/{md5}
and/v3/ioc/sha1/{sha1}
. Include the desired hash value in the endpoint to retrieve associated ip,domain, ttp and imphash results.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/ioc/sha256/2a85d68c1c503d9b6efcf124ac7d7afc0f3a8a0543f5d6790ebd978f4e8468bd?community=default' -H "Authorization: $API_KEY"
Search for Associated Hashes
GET /v3/ioc/search
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
imphash |
string | false | imphash to see related hashes |
domain |
string | false | domain to see related hashes |
ttp |
string | false | MITRE ttp to see related hashes |
ip |
string | false | IP to see related hashes |
Requires at least one of the values imphash, domain, ttp or ip in the query.
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/ioc/search?ip=193.138.218.74&community=default' -H "Authorization: $API_KEY"
Sandboxing
List Sandboxes
GET /v3/sandbox/provider/list
List the
provider_slug
andvm_slug
values for sandboxing a file and/or artifact.
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/sandbox/provider/list' -H "Authorization: $API_KEY"
Sandboxing a File
POST /v3/sandbox/sandboxtask/instance
Inform PolySwarm to start a sandbox, returns an
artifact_id
and pre signed AWS url that the file needs to be placed into.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
artifact_name |
string | true | Path to File of the artifact to be sandboxed. |
artifact_type |
string | true | Defines the type, should be FILE |
provider_slug |
string | true | Name of the sandbox to detonate on |
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
vm_slug |
string | false | Slug name for the sandbox vm to use. |
Query Sample
curl -X POST -d '{"artifact_name": "eicar.com.txt", "artifact_type": "FILE", "community": "default", "sandbox": "cape"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/sandbox/sandboxtask/instance
PUT https://s3.us-east-2.amazonaws.com/{PRE_SIGNED_AWS_URL}
Provide the file to upload to the AWS URL.
Query Sample
curl --upload-file ./tests/eicar.txt "<PRE_SIGNED_AWS_URL>"
PUT /v3/instance
Inform PolySwarm the upload is complete and to start the sandbox.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
string | true | artifact_id that has been returned by the first POST command |
Query Sample
curl -X PUT https://api.polyswarm.network/v3/sandbox/sandboxtask/instance?id=49722305458696948 -H "Authorization: $API_KEY"
Sandboxing an Existing Artifact
POST /v3/sandbox/sandboxtask
Send an existing artifact to be sandboxed by providing its artifact id, and the chosen Sandbox provider.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
artifact_id |
integer | true | artifact_id value for the artifact |
provider_slug |
string | true | Sandbox provider name |
vm_slug |
string | false | Slug name for the sandbox vm to use. |
Query Sample
curl -X POST -d '{"artifact_id": "66885603025097785", "provider_slug": "cape"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/sandbox/sandboxtask
Lookup Sandbox Task
GET /v3/sandbox/sandboxtask
Lookup the results from the specified sandbox task.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
sandbox_task_id |
integer | true | sandbox task id value |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/sandbox/sandboxtask?community=default&sandbox_task_id=29603365297891589' -H "Authorization: $API_KEY"
Lookup Latest Sandbox Task
GET /v3/sandbox/sandboxtask/latest
Lookup the results from the most recent sandbox task that was run on the provided sha256 in the provided sandbox.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
sha256 |
string | true | Hash value to lookup |
sandbox |
string | true | Name of the Sandbox, e.g. cape , triage |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/sandbox/sandboxtask/latest?community=default&sandbox=cape&sha256=5da5a1e3983982a92341953929d4c7726da65fe5125d264dd8932a870f2f154a' -H "Authorization: $API_KEY"
Download Sandbox Artifact
To download Sandbox Artifacts like pcap, jarm or report files follow this section to download via instance_id
.
Each file (pcap,report etc) will have its own
instance_id
, these can be found by using the "Lookup Sandbox Task" (/v3/sandbox/sandboxtask
) command, and each file name will have aninstance_id
listed beside it.
List my Sandbox Tasks
GET /v3/sandbox/sandboxtask/my-tasks
Find all sandbox tasks that you or your team members have run in the chosen date range.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
community |
string | true | Name of the Community. Simplest to use default for the public community, or private for your Private Community |
sandbox |
string | false | Name of the sandbox to search on |
start-date |
string | false | Start date to search |
end-date |
string | false | End date to search |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/sandbox/sandboxtask/my-tasks?community=default' -H "Authorization: $API_KEY"
Search Sandbox Tasks
GET /v3/sandbox/sandboxtask/list
Find all sandbox tasks associated with a sha256 (i.e. each time that artifact was sandboxed).
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
sha256 |
string | true | Hash value to find related tasks |
sandbox |
string | false | Sandbox name to search |
start-date |
string | false | Start date for the search |
end-date |
string | false | End date for the search |
status |
string | false | Status of the sandbox task i.e. PENDING |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/sandbox/sandboxtask/list?sha256=5da5a1e3983982a92341953929d4c7726da65fe5125d264dd8932a870f2f154a' -H "Authorization: $API_KEY"
Hunting with Yara
Managing Yara Rulesets
Create Ruleset
POST /v3/hunt/rule
Create a new ruleset.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
yara |
string | true | Yara values, escape the items |
name |
string | true | Name of the ruleset |
description |
string | false | Description for the ruleset |
Query Sample
curl -X POST -d '{"yara": "\/*\r\n This Yara ruleset is under the GNU-GPLv2 license (http:\/\/www.gnu.org\/licenses\/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.\r\n\r\n*\/\r\n\r\nimport \"pe\"\r\n\r\nrule MirageStrings\r\n{\r\n meta:\r\n description = \"Mirage Identifying Strings\"\r\n author = \"Seth Hardy\"\r\n last_modified = \"2014-06-25\"\r\n \r\n strings:\r\n $ = \"Neo,welcome to the desert of real.\" wide ascii\r\n $ = \"\/result?hl=en&id=%s\"\r\n \r\n condition:\r\n any of them\r\n}\r\n\r\nrule Mirage\r\n{\r\n meta:\r\n description = \"Mirage\"\r\n author = \"Seth Hardy\"\r\n last_modified = \"2014-06-25\"\r\n \r\n condition:\r\n MirageStrings\r\n}\r\n\r\nrule Mirage_APT\r\n{\r\n meta:\r\n Author = \"Silas Cutler\"\r\n Date = \"yyyy\/mm\/dd\"\r\n Description = \"Malware related to APT campaign\"\r\n Reference = \"Useful link\"\r\n \r\n strings:\r\n $a1 = \"welcome to the desert of the real\"\r\n $a2 = \"Mirage\"\r\n $b = \"Encoding: gzip\"\r\n $c = \/\\\/[A-Za-z]*\\?hl=en\/\r\n\r\n condition: \r\n (($a1 or $a2) or $b) and $c\r\n}", "name": "test_rule"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/hunt/rule
View Ruleset
GET /v3/hunt/rule
View the contents of the specified ruleset.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | ruleset id value to view the contents |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/rule?id=15862162112430616' -H "Authorization: $API_KEY"
List Rulesets
GET /v3/hunt/rule/list
List all rulesets in your account
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/rule/list' -H "Authorization: $API_KEY"
Update Ruleset
PUT /v3/hunt/rule
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | ruleset_id that needs to be updated |
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
name |
string | false | New updated name for the ruleset |
file |
string | false | New updated yara values, escaped |
description |
string | false | New updated description |
Query Sample
curl -X PUT -d '{"yara": "\/*\r\n This Yara ruleset is under the GNU-GPLv2 license (http:\/\/www.gnu.org\/licenses\/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.\r\n\r\n*\/\r\n\r\nimport \"pe\"\r\n\r\nrule MirageStrings\r\n{\r\n meta:\r\n description = \"Mirage Identifying Strings\"\r\n author = \"Seth Hardy\"\r\n last_modified = \"2014-06-25\"\r\n \r\n strings:\r\n $ = \"Neo,welcome to the desert of real.\" wide ascii\r\n $ = \"\/result?hl=en&id=%s\"\r\n \r\n condition:\r\n any of them\r\n}\r\n\r\nrule Mirage\r\n{\r\n meta:\r\n description = \"Mirage\"\r\n author = \"Seth Hardy\"\r\n last_modified = \"2014-06-25\"\r\n \r\n condition:\r\n MirageStrings\r\n}\r\n\r\nrule Mirage_APT\r\n{\r\n meta:\r\n Author = \"Silas Cutler\"\r\n Date = \"yyyy\/mm\/dd\"\r\n Description = \"Malware related to APT campaign\"\r\n Reference = \"Useful link\"\r\n \r\n strings:\r\n $a1 = \"welcome to the desert of the real\"\r\n $a2 = \"Mirage\"\r\n $b = \"Encoding: gzip\"\r\n $c = \/\\\/[A-Za-z]*\\?hl=en\/\r\n\r\n condition: \r\n (($a1 or $a2) or $b) and $c\r\n}", "name": "yytest_rule4444"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/hunt/rule?id=15862162112430616
Delete Ruleset
DELETE /v3/hunt/rule
Delete the given ruleset.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | ruleset_id value to delete |
Query Sample
curl -X DELETE 'https://api.polyswarm.network/v3/hunt/rule?id=15862162112430616' -H "Authorization: $API_KEY"
Live Hunts
Start Live Hunt
POST /v3/hunt/rule/live
Start a Live Hunt using the given ruleset.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
rule_id |
integer | true | rule_id of the ruleset to start a live hunt |
Query Sample
curl -X POST -d '{"rule_id":"6992666340481223"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/hunt/rule/live
Stop Live Hunt
DELETE /v3/hunt/rule/live
Stop the Live Hunt on a given ruleset.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
rule_id |
integer | true | rule_id of the ruleset to stop a live hunt |
Query Sample
curl -X DELETE -d '{"rule_id":"6992666340481223"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/hunt/rule/live
View Live Results of a Live Hunt
GET /v3/hunt/live/list
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
since |
integer | false | Time value (in seconds) for how far back to request results (default 1440 ) |
rule-name |
integer | false | Name of the ruleset being used in the hunt |
family |
string | false | Filter results based on the family name |
polyscore-lower |
string | false | Polyscore lower bound for the hunt results |
polyscore-upper |
string | false | Polyscore upper bound for the hunt results |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/live/list?polyscore-upper=0.99' -H "Authorization: $API_KEY"
View a Singular Result
GET /v3/hunt/live
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | Provide the result id value |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/live?id=75570120079919313' -H "Authorization: $API_KEY"
Delete Live Result
DELETE /v3/hunt/live/list
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
result_ids |
integer | true | List of ruleset_ids for the live hunt results to be deleted. |
Query Sample
curl -X DELETE -d '{"result_ids":["66625018770158663"]}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/hunt/live/list
Historical Hunts
Start a Historical Hunt
POST /v3/hunt/historical
start a new Historical Hunt using the provided yara rules or existing ruleset file.
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
rule_id |
integer | true | rule_id of the ruleset to start a historical hunt |
yara |
string | true | Path of the yara file to start a historical hunt |
Either
rule_id
oryara
is required in the call.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
name |
string | false | Name of the ruleset to start an historical hunt |
Query Sample
curl -X POST -d '{"rule_id":"24285974317896172"}' -H "Content-Type: application/json" -H "Authorization: $API_KEY" https://api.polyswarm.network/v3/hunt/historical
Cancel an Historical Hunt
PUT /v3/hunt/historical
Stop a Historical Hunt. If it's already running, it will stop at the next batch interval.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | id of the historical hunt to stop |
Query Sample
curl -X PUT 'https://api.polyswarm.network/v3/hunt/historical?' -H "Authorization: $API_KEY"
List Historical Hunts
GET /v3/hunt/historical/list
List the Historical Hunts in your account.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
since |
integer | false | Value in seconds to look for Historical Hunts |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/historical/list' -H "Authorization: $API_KEY"
View Historical Hunt Details for a Hunt
GET /v3/hunt/historical
Provides ability to download results as a csv file and see the ruleset contents.
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | historical hunt id to view details |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/historical?id=75570120079919313' -H "Authorization: $API_KEY"
View Historical Hunt Results
GET /v3/hunt/historical/results/list
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | Historical hunt id |
rule-name |
integer | false | Ruleset name to filter results |
family |
integer | false | Family name to filter results |
polyscore-lower |
integer | false | Polyscore lower bound for the results |
polyscore-upper |
integer | false | Polyscore upper bound for the results |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/historical/results/list?id=75570120079919313' -H "Authorization: $API_KEY"
View a Singular Historical Hunt Result
GET /v3/hunt/historical/results
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | result_id value to view single result |
Query Sample
curl -X GET 'https://api.polyswarm.network/v3/hunt/historical/results?id=75570120079919313' -H "Authorization: $API_KEY"
Delete a Historical Hunt
DELETE /v3/hunt/historical
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
integer | true | hunt id of the historical hunt to delete it |
Query Sample
curl -X DELETE 'https://api.polyswarm.network/v3/hunt/historical?id=1371741361996923' -H "Authorization: $API_KEY"
Delete Historical Hunt Results
DELETE /v3/hunt/historical/results/live
Body Schema (application/json)
Parameter | Type | Required | Description |
---|---|---|---|
result_ids |
integer | true | ruleset_id of the historical hunt to delete results from it |
Query Sample
curl -X DELETE -d '{"result_ids":["66625018770158663"]}' -H "Content-Type: application/json" https://api.polyswarm.network/v3/hunt/historical/results/list -H "Authorization: $API_KEY"