curl --request GET \
--url https://api.enkryptai.com/skill-hub/scans \
--header 'apikey: <api-key>'import requests
url = "https://api.enkryptai.com/skill-hub/scans"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.enkryptai.com/skill-hub/scans', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enkryptai.com/skill-hub/scans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apikey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.enkryptai.com/skill-hub/scans"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apikey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.enkryptai.com/skill-hub/scans")
.header("apikey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enkryptai.com/skill-hub/scans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apikey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"scan_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "succeeded",
"repo": "affaan-m/ECC",
"skill_name": "api-design",
"verdict": "SAFE",
"risk_level": "SAFE",
"findings_count": 0,
"stars": 128,
"created_at": "2026-08-24T10:00:00Z"
}
],
"total": 1,
"limit": 50,
"offset": 0
}{
"code": 403,
"error": "Forbidden",
"message": "Skill Scanner APIs are an enterprise feature not enabled for your organization. Contact us at support@enkryptai.com for access.",
"request_id": "<string>",
"time": 123
}{
"code": 403,
"error": "Forbidden",
"message": "Skill Scanner APIs are an enterprise feature not enabled for your organization. Contact us at support@enkryptai.com for access.",
"request_id": "<string>",
"time": 123
}{
"detail": [
{
"type": "value_error",
"loc": [
"body",
"git_url"
],
"msg": "Value error, git_url must be a full http(s) clone URL"
}
]
}List Skill Scans
Lists your skill scans as summaries, without the full reports. Page with limit / offset.
The listing is always scoped to the user behind your API key. There is no user_email parameter — the gateway sets it, and sending one returns 400.
Scoped to your organization: every scan any member of it has run, across all projects. (An individual account sees its own.) There is no user_email parameter — the gateway applies the scope, and sending one is a 400.
curl --request GET \
--url https://api.enkryptai.com/skill-hub/scans \
--header 'apikey: <api-key>'import requests
url = "https://api.enkryptai.com/skill-hub/scans"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.enkryptai.com/skill-hub/scans', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enkryptai.com/skill-hub/scans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apikey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.enkryptai.com/skill-hub/scans"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apikey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.enkryptai.com/skill-hub/scans")
.header("apikey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enkryptai.com/skill-hub/scans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apikey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"scan_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "succeeded",
"repo": "affaan-m/ECC",
"skill_name": "api-design",
"verdict": "SAFE",
"risk_level": "SAFE",
"findings_count": 0,
"stars": 128,
"created_at": "2026-08-24T10:00:00Z"
}
],
"total": 1,
"limit": 50,
"offset": 0
}{
"code": 403,
"error": "Forbidden",
"message": "Skill Scanner APIs are an enterprise feature not enabled for your organization. Contact us at support@enkryptai.com for access.",
"request_id": "<string>",
"time": 123
}{
"code": 403,
"error": "Forbidden",
"message": "Skill Scanner APIs are an enterprise feature not enabled for your organization. Contact us at support@enkryptai.com for access.",
"request_id": "<string>",
"time": 123
}{
"detail": [
{
"type": "value_error",
"loc": [
"body",
"git_url"
],
"msg": "Value error, git_url must be a full http(s) clone URL"
}
]
}Authorizations
Query Parameters
Only return scans in this state.
queued, running, succeeded, failed Only return scans of this repository, as owner/name (derived server-side from git_url for github.com URLs).
Only return scans with this verdict. Matched exactly and case-sensitively against the stored UPPERCASE value, so SAFE matches and safe matches nothing.
Page size.
1 <= x <= 200Number of rows to skip.
x >= 0Response
Successful Response
Offset-paginated list of your scans. Items are summaries — the report is not included; fetch it per scan.

