Self Verify
curl --request GET \
--url https://api.limitguard.ai/v1/self-verifyimport requests
url = "https://api.limitguard.ai/v1/self-verify"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.limitguard.ai/v1/self-verify', 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.limitguard.ai/v1/self-verify",
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.limitguard.ai/v1/self-verify"
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.limitguard.ai/v1/self-verify")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.limitguard.ai/v1/self-verify")
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{
"entity_name": "<string>",
"trust_score": 50,
"trust_level": "<string>",
"verified_at": "2023-11-07T05:31:56Z",
"signals": [
{
"signal_name": "<string>",
"status": "<string>",
"verifiable": true,
"description": "<string>",
"evidence_url": "<string>"
}
],
"scoring_methodology_url": "<string>",
"on_chain_proof": {}
}API Reference
Self Verify
Run LimitGuard through its own trust verification.
Public endpoint (no auth) - transparency is the point. Includes CORS headers for embedding.
Returns: SelfVerificationResult with trust score, signals, and methodology
GET
/
v1
/
self-verify
Self Verify
curl --request GET \
--url https://api.limitguard.ai/v1/self-verifyimport requests
url = "https://api.limitguard.ai/v1/self-verify"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.limitguard.ai/v1/self-verify', 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.limitguard.ai/v1/self-verify",
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.limitguard.ai/v1/self-verify"
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.limitguard.ai/v1/self-verify")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.limitguard.ai/v1/self-verify")
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{
"entity_name": "<string>",
"trust_score": 50,
"trust_level": "<string>",
"verified_at": "2023-11-07T05:31:56Z",
"signals": [
{
"signal_name": "<string>",
"status": "<string>",
"verifiable": true,
"description": "<string>",
"evidence_url": "<string>"
}
],
"scoring_methodology_url": "<string>",
"on_chain_proof": {}
}Response
200 - application/json
Successful Response
Result of running LimitGuard through its own trust engine.
Entity being verified
Trust score 0-100
Required range:
0 <= x <= 100Trust level (HIGH, MEDIUM, LOW)
Verification timestamp
List of trust signals evaluated
Show child attributes
Show child attributes
URL to published scoring methodology
On-chain verification proof (ERC-8004)