List available compliance frameworks
curl --request GET \
--url https://api.zespan.com/v1/compliance/frameworksimport requests
url = "https://api.zespan.com/v1/compliance/frameworks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.zespan.com/v1/compliance/frameworks', 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.zespan.com/v1/compliance/frameworks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.zespan.com/v1/compliance/frameworks"
req, _ := http.NewRequest("GET", url, nil)
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.zespan.com/v1/compliance/frameworks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zespan.com/v1/compliance/frameworks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"frameworks": [
{
"id": "soc2",
"name": "SOC 2",
"label": "<string>",
"reviewedOn": "2023-12-25",
"reviewedBy": "Zespan engineering — not reviewed by a licensed auditor",
"controls": [
{
"controlId": "CC6.1",
"title": "Logical access controls"
}
]
}
]
}{
"error": "Unauthorized",
"code": "rate_limit_exceeded"
}List available compliance frameworks
A static capability listing — the frameworks Zespan can map evidence to today, each with its controls. soc2 is the only registered framework as of this release; EU AI Act and ISO/IEC 42001 are not yet available. Not project-scoped and not plan-gated: a customer deciding whether to upgrade needs to see what they’d get before they commit.
Authenticated with a dashboard session (browser cookie), not x-api-key, and requires the compliance:read permission.
GET
/
v1
/
compliance
/
frameworks
List available compliance frameworks
curl --request GET \
--url https://api.zespan.com/v1/compliance/frameworksimport requests
url = "https://api.zespan.com/v1/compliance/frameworks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.zespan.com/v1/compliance/frameworks', 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.zespan.com/v1/compliance/frameworks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.zespan.com/v1/compliance/frameworks"
req, _ := http.NewRequest("GET", url, nil)
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.zespan.com/v1/compliance/frameworks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zespan.com/v1/compliance/frameworks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"frameworks": [
{
"id": "soc2",
"name": "SOC 2",
"label": "<string>",
"reviewedOn": "2023-12-25",
"reviewedBy": "Zespan engineering — not reviewed by a licensed auditor",
"controls": [
{
"controlId": "CC6.1",
"title": "Logical access controls"
}
]
}
]
}{
"error": "Unauthorized",
"code": "rate_limit_exceeded"
}Response
The registered frameworks and their controls.
Show child attributes
Show child attributes
Was this page helpful?
⌘I

