Frauty API Documentation

Welcome to Frauty's API documentation. Our API enables you to check domain security scores and verify website trustworthiness in real-time.

Getting Started

The Frauty API is organized around REST. Our API accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

Base URL

https://api.frauty.com

Authentication

Frauty uses API keys to authenticate requests. You can view and manage your API keys in your Frauty Dashboard.

Example Request

curl -X POST https://api.frauty.com/score-domain \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "example.com"}'