TrustyGorilla Docs
REST API

Endpoints

All available TrustyGorilla REST API endpoints.

POST /verify

Verify the trust level of a resource.

POST https://api.trustygorilla.com/v1/verify

Request body

{
  "resource": "https://example.com/document.pdf",
  "type": "document"
}
FieldTypeRequiredDescription
resourcestringYesURL or resource identifier
typestringNoResource type hint

Response

{
  "trusted": true,
  "score": 94,
  "reason": null
}
FieldTypeDescription
trustedbooleanWhether the resource is trusted
scorenumberTrust score (0–100)
reasonstring | nullReason if not trusted

GET /health

Check API availability.

GET https://api.trustygorilla.com/v1/health

Response

{ "status": "ok" }

On this page