Results are flat records containing Domain, Type and Number. A domain can return more than one record. Domains without known registration data return no records.
[
{ "Domain": "builtwith.com", "Type": "GSTIN", "Number": "2332323" }
]
CSV responses contain the same values:
Domain,Type,Number
builtwith.com,GSTIN,2332323
Version 2 (vat2) adds CompanyName, Address and Country, sourced from the same company record as the domain's meta information. Address combines the available city, state/region and postcode into a single comma-separated string, and Country is the ISO country code. Any of these three fields may be empty if not known for the domain.
[
{ "Domain": "builtwith.com", "Type": "GSTIN", "Number": "2332323", "CompanyName": "BuiltWith Pty Ltd", "Address": "Sydney, NSW, 2000", "Country": "AU" }
]
CSV v2 responses contain the same values:
Domain,Type,Number,CompanyName,Address,Country
builtwith.com,GSTIN,2332323,BuiltWith Pty Ltd,"Sydney, NSW, 2000",AU