Skip to main content
Fetch detailed information about a business, including profile, contact details, and metadata.
This endpoint returns all business details in a single response — no pagination required.

Onboarding Guide

This API is part of Willro’s business integration suite. Use it to retrieve profile, contact, and metadata of your business in one call.

Requirements

  • A valid API key (passed in the x-api-key header)
  • The endpoint must be accessed over HTTPS
  • Ensure your key is kept confidential and never exposed publicly

Endpoint

GET /integration/business-api/info Base URL: https://api.willro.com

Authentication

x-api-key
string
required
Your Willro API key. You can find it in your Willro dashboard under Developer
API Keys: willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030

Request Example

const response = await fetch('https://api.willro.com/integration/business-api/info', {
  method: 'GET',
  headers: {
    'x-api-key': 'willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030',
    'Content-Type': 'application/json'
  }
});

const data = await response.json();
console.log(data);

Response Example

{
  "businessName": "Willro",
  "website": "https://willro.com",
  "category": "Tech",
  "averageRating": 4,
  "totalReview": 5,
  "googleMapUrl": "https://www.google.com/maps",
  "location": null
}