sUNC Data
WhatExpsAre.Online has a dedicated sUNC parse API which has data for 30+ exploits! Documentation for accessing them is below
Retrieving sUNC API Data
Returns executor test metadata and function compatibility results.
You can obtain all sUNC data via this route:
GET https://weao.xyz/api/sunc?scrap=[suncScrap]&key=[suncKey]
scrap
string
suncScrap id
key
string
Key to access suncScrap
Example Response:
{
"timestamp": 1769572300.476,
"version": "2.1.5",
"bibip": false,
"timeTaken": 28.81,
"executor": "Exec",
"outdated": false,
"tests": {
"passed": [],
"failed": []
}
}This is only an example, your response might be different!
{
"error": "Too Many Requests",
"rateLimitInfo": {
"remainingTime": 120,
"requestsRemaining": 0,
"resetTime": 1753410630360
}
}Top level fields
timestamp
number
Unix timestamp of when the sUNC result was generated
version
string
Version of the executor/build being tested
bibip
boolean
Boolean flag returned by the API
timeTaken
number
Total time taken to complete the test run, in seconds
executor
string
Name of the executor being tested
outdated
boolean
Whether the executor/build is outdated
tests
object
Contains categorized test results
Tests object
passed
array
List of tests that passed
failed
array
List of tests that failed
Passed test object
Each entry inside tests.passed uses this structure:
name
string
Name of the tested function or feature
description
string
Short explanation of what the function does
library
string
Library/category the function belongs to
status
string
Test result, always passed for this array
Example:
Failed Test Object
Each entry inside tests.failed uses this structure:
name
string
Name of the tested function or feature
description
string
Short explanation of what the function does
library
string
Library/category the function belongs to
status
string
Test result, always failed for this array
reason
string
Explains why the test failed or could not be verified
Example:
Notes
tests.passedandtests.failedare separated into different arrays.Failed test objects include a
reasonfield.librarycan be used to group functions in your frontend or documentation.timestampis returned as a Unix timestamp with fractional precision.
Last updated