Overview
Botd is an open-source JavaScript library and API from FingerprintJS that detects whether a web visitor is a bot or a real human browser. It analyzes browser signals in real time and returns a bot detection result that you can verify on your server. It is commonly used to protect login forms, signup flows, and APIs from automated abuse.
Beginner Tip
Include the Botd JavaScript snippet on your page to generate a detection result token, then send that token to your backend and verify it via the API. The client-side library does the heavy lifting — the API just validates the result.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"title": "The Great Gatsby",
"authors": [
"F. Scott Fitzgerald"
],
"publishedDate": "1925-04-10",
"pageCount": 218,
"categories": [
"Fiction"
],
"imageLinks": {
"thumbnail": "https://books.google.com/..."
},
"averageRating": 4
} Field Reference
requestId Unique identifier for this bot detection request. bot.result Detection outcome: "notDetected", "good", or "bad". bot.type Specific bot category detected, such as "headless" or "automation". ip IP address of the visitor that was analyzed. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://botd.fpapi.io/api/v1/verify?token=RESULT_TOKEN";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
Similar APIs
View All →BinaryEdge
BinaryEdge is a cybersecurity platform that continuously scans the entire internet and exposes the results through its API.
Bugcrowd
The Bugcrowd API gives you programmatic access to your organization's bug bounty program data, including submissions, rewards, and researcher profiles.
Censys
Censys is an internet-wide scanning platform that lets you search for any internet-connected host, device, or certificate using its REST API.
Complete Criminal Checks
Complete Criminal Checks provides a REST API to search for criminal offense records across all U.S.
EmailRep
⭐ Beginner's PickEmailRep is a free API that evaluates the risk and reputation of an email address in seconds.