Async Web Presence Review
Async Review Company
This API endpoint allows you to enqueue a web presence review based on either a website (as a URL, domain, or email) or both a business name and address. Other optional information about the company and applicant (phone, email, applicant name) can help identify the business and locate additional detail. You may either poll for status updates using the url provided in the response's Location header, or, if you have a webhook configured, wait for us to notify you when the web presence review is completed. (You may then request the details from the Web Presence Review History endpoint.) This API requires a valid API key (X-API-KEY) to be provided in the headers and is rate limited to 5 requests per second.
post/api/v1/company/async/search
Request body
Example request
{
"domain": "example.net",
"submitted_business_name": "Bob's Burritos",
"submitted_description": "Bob's Burritos is a local institution proudly serving top quality Mexican street food to the Memphis area since 1967.",
"address_line_1": "123 Main St.",
"address_line_2": "Suite 100",
"city": "Memphis",
"state_province": "TN",
"postal_code": "37501",
"country": "USA",
"submitted_email": "bob@yahoo.com",
"submitted_phone": "+19015555555",
"submitted_full_name": "Bob Smith",
"external_tracking_ref": "abc_defg12345678",
"match_profile_id": "00000000-0000-0000-0000-000000000000"
}Response
OK
Example response
{
"message": "Request for info@example.com is processing.",
"tracking_id": "00000000-0000-0000-0000-000000000000"
}