Download OpenAPI specification:Download
Creates a report based on a search criteria
required | Array of objects non-empty |
| CallbackURL | string <uri> |
object (CreateReportOptions) |
{- "Criterias": [
- {
- "CriteriaElement": {
- "Include": true,
- "Criteria": {
- "Technology": "string",
- "Version": "string"
}
}
}
], - "Options": {
- "MaxDomainCount": 1
}
}{- "id": "2215b47b-fe82-d987-27f0-4464fadee162"
}Provides access to report details
| reportId required | string <uuid> Example: 2215b47b-fe82-d987-27f0-4464fadee162 The report identifier |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
{- "id": "2215b47b-fe82-d987-27f0-4464fadee162",
- "status": "ready",
- "priceInCredits": 2500,
- "domainCount": 2500,
}Purchases the created report identified by the report ID.
| reportId required | string <uuid> Example: 2215b47b-fe82-d987-27f0-4464fadee162 The report identifier |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
| creditsToPay | integer Number of credits to spend for the report. |
{- "creditsToPay": 2500
}Returns partial data about the specified domain from the database. You can use this data to preview domain info before spending credits with method /domaininfo
| domain required | string Example: domain=webtechsurvey.com Domain name which data to be retrieved |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
{- "status": "success",
- "creditsUsed": 0,
- "remainingCreditsBalance": 10,
- "results": {
- "crawlDate": "202024-04-01T07:00:00.000Z",
- "technologyCount": 20,
- "advertiserCount": 15,
- "categoryCount": 5
}
}Retrieves data about the specified domain from the database
| domain required | string Example: domain=webtechsurvey.com Domain name which data to be retrieved |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
{- "status": "success",
- "creditsUsed": 0,
- "remainingCreditsBalance": 10,
- "results": {
- "crawlDate": "202024-04-01T07:00:00.000Z",
- "domainInfo": {
- "domain": "webtechsurvey.com",
- "online": true,
- "firstCrawledDate": "2024-03-01T08:00:00.000Z",
- "lastCrawledDate": "2024-05-01T07:00:00.000Z",
- "topLevelDomain": "com",
- "rank": 5400,
- "country": "US",
- "ip": "34.96.66.233",
- "language": "en",
- "accessViaHTTP": false,
- "httpOpen": true,
- "httpsOpen": true,
- "certIssuer": "DigiCert Inc",
- "certExpiration"": "2024-09-17T07:00:00.000Z",
- "asnId": 16550,
- "asnName": "GOOGLE-PRIVATE-CLOUD",
- "address": "123 Sesame Street, New York, NY, 10176, US",
- "phone": "+1.123.456.7890",
}, - "technologies": [
- {
- "technology": "Cloudflare",
- "version": "1.2",
- "categories": [
- "CDN"
], - "usedSince": "2024-03-01T08:00:00.000Z",
- "lastSeen": "2024-05-01T07:00:00.000Z"
}
], - "advertisers": [
- {
- "technology": "google.com Direct",
- "usedSince": "2024-03-01T08:00:00.000Z",
- "lastSeen": "2024-05-01T07:00:00.000Z"
}
], - "headers": [
- {
- "header": "Server",
- "value": "nginx/1.24.0"
}
], - "keywords": [
- [
- "Technology",
- "Lead Generation",
- "Website Profiling"
]
], - "tags": [
- [
- "GM-12322456"
]
]
}
}Returns partial data about subdomains
| domain required | string Example: domain=webtechsurvey.com Domain name which data to be retrieved |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
{- "status": "success",
- "creditsUsed": 0,
- "remainingCreditsBalance": 10,
- "results": {
- "subdomainCount": 3
}
}Returns list of all subdomains of the top-level-domain
| domain required | string Example: domain=webtechsurvey.com Domain name which data to be retrieved |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
{- "status": "success",
- "creditsUsed": 1,
- "remainingCreditsBalance": 10,
- "results": {
- "subdomains": [
- "api.wikipedia.org",
- "commons.wikipedia.org",
- "en.wikipedia.org"
]
}
}Crawls and analyzes website
| domain required | string Example: domain=webtechsurvey.com Domain to be crawled |
| cve | boolean Example: cve=true Specifies whether scan should test for CVE vulnerabilities (requires additional credits) |
| x-api-key required | string <uuid> Example: wts-api-asn1k32j7klv51eyqz |
{- "status": "success",
- "creditsUsed": 1,
- "remainingCreditsBalance": 10,
- "results": {
- "technologies": [
- {
- "technology": "Cloudflare",
- "version": "1.2",
- "categories": [
- "CDN"
],
}
],
}
}