REST API
Endpoints
All available TrustyGorilla REST API endpoints.
POST /verify
Verify the trust level of a resource.
POST https://api.trustygorilla.com/v1/verifyRequest body
{
"resource": "https://example.com/document.pdf",
"type": "document"
}| Field | Type | Required | Description |
|---|---|---|---|
resource | string | Yes | URL or resource identifier |
type | string | No | Resource type hint |
Response
{
"trusted": true,
"score": 94,
"reason": null
}| Field | Type | Description |
|---|---|---|
trusted | boolean | Whether the resource is trusted |
score | number | Trust score (0–100) |
reason | string | null | Reason if not trusted |
GET /health
Check API availability.
GET https://api.trustygorilla.com/v1/healthResponse
{ "status": "ok" }