BuiltWith Bulk Processing API
Asynchronous batch domain processing
Asynchronous batch domain processing
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/builtwith-bulk-processing-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: BuiltWith Change Bulk Processing API
description: 'Track technology additions and removals on websites with business context. Returns AI-generated summaries explaining the business significance of technology changes. Credits are only consumed when changes are found.
'
version: change1
contact:
name: BuiltWith Support
url: https://builtwith.com/contact
termsOfService: https://builtwith.com/terms
license:
name: Commercial
url: https://builtwith.com/plans
servers:
- url: https://api.builtwith.com/change1
description: BuiltWith Change API v1
security:
- apiKeyQuery: []
- apiKeyHeader: []
tags:
- name: Bulk Processing
description: Asynchronous batch domain processing
paths:
/domain/bulk:
post:
summary: Bulk domain technology lookup
description: 'Submit a list of domains for batch processing. Small batches return synchronously; large batches return a job ID for polling.
'
operationId: bulkDomainLookup
tags:
- Bulk Processing
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BulkRequest'
example:
KEY: 00000000-0000-0000-0000-000000000000
LOOKUP:
- example.com
- shopify.com
- wordpress.org
responses:
'200':
description: Bulk results or async job reference
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/DomainResult'
- $ref: '#/components/schemas/BulkJobResponse'
components:
schemas:
Technology:
type: object
description: A detected web technology
properties:
Name:
type: string
example: WordPress
Description:
type: string
Link:
type: string
format: uri
Tag:
type: string
description: Primary technology category tag
example: cms
Categories:
type: array
items:
$ref: '#/components/schemas/TechCategory'
FirstDetected:
type: integer
format: int64
description: Unix timestamp (ms) of first detection
LastDetected:
type: integer
format: int64
description: Unix timestamp (ms) of last detection
Live:
type: boolean
description: Whether the technology is currently active
Attributes:
type: array
items:
$ref: '#/components/schemas/Attribute'
DomainResultItem:
type: object
properties:
Result:
$ref: '#/components/schemas/Result'
Attribute:
type: object
description: Additional attribute data for a technology
properties:
Field:
type: string
Value:
type: string
DomainMeta:
type: object
description: Company and domain metadata
properties:
CompanyName:
type: string
Vertical:
type: string
Telephones:
type: array
items:
type: string
Emails:
type: array
items:
type: string
City:
type: string
State:
type: string
Postcode:
type: string
Country:
type: string
Names:
type: array
items:
type: string
Path:
type: object
properties:
Domain:
type: string
description: Sub-domain or path scanned
Technologies:
type: array
items:
$ref: '#/components/schemas/Technology'
Result:
type: object
properties:
Lookup:
type: string
description: The queried domain
example: example.com
Meta:
$ref: '#/components/schemas/DomainMeta'
Paths:
type: array
items:
$ref: '#/components/schemas/Path'
BulkJobResponse:
type: object
description: Async job reference for large bulk batches
properties:
JobId:
type: string
description: Job identifier for polling status
Status:
type: string
enum:
- queued
- processing
- complete
- error
TechCategory:
type: object
properties:
Category:
type: string
example: CMS
DomainResult:
type: object
description: Top-level response wrapper for domain technology lookups
properties:
Results:
type: array
items:
$ref: '#/components/schemas/DomainResultItem'
BulkRequest:
type: object
required:
- KEY
- LOOKUP
properties:
KEY:
type: string
format: uuid
description: API authentication key
LOOKUP:
type: array
items:
type: string
description: List of domains to look up
maxItems: 500
securitySchemes:
apiKeyQuery:
type: apiKey
in: query
name: KEY
apiKeyHeader:
type: apiKey
in: header
name: Authorization
description: 'Format: ''Authorization: API {key}'''
externalDocs:
description: BuiltWith Change API Documentation
url: https://api.builtwith.com/change-api