API Reference

Welcome to BuzzBoard API! You can use this API to access all our API endpoints and dive into '000s of signals to enrich your database.

The API is organized around REST. All requests should be made over SSL. All request and response bodies are encoded in JSON.

Enrich Records

Enrich Records - Individual

Get signals for an individual business entity to a specified callback URL.

https://apis.buzzboard.com/v5.0/records/enrich

Parameters

Field Type Description
business_name

String

Name of the business record

website

String

Business website URL

phone

String

Business phone number

business_email

String

Business email address

address

String

Business street number, street, suite, or apartment number

city

String

Business city name

state

String

Business state name

zip

String

Business zip/postal code

country

String

Business country name

external_document_id

String

Unique identifier for the record by API consumer

callback_url Required

String

Call back URL to receive the enriched data once BuzzBoard enrichment is completed

Creates a new record 'David Weinstein Dmd' with the reference job id.

curl -X POST "https://apis.buzzboard.com/v5.0/records/enrich"
-H "authorization: Bearer ACCESS_TOKEN"
-H "X-Authorization: Bearer ACCESS_TOKEN"
-H "Content-Type: application/json"
-d '{ "business_name": "David Weinstein Dmd", "website": "http://newyorkperiodontist.com", "phone": "(212) 980-2800", "business_email": "contactus@newyorkperiodontist.com", "address": "136 E 64Th St", "city": "New York", "zip": "10065", "state": "NY", "country": "United States", "external_document_id": "dec06202101", "callback_url": "https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe" }'
var request = require('request');

var options = {
        method: 'POST',
        url: 'https://apis.buzzboard.com/v5.0/records/enrich',
        headers: {
            'cache-control': 'no-cache',
            'authorization': 'Bearer ACCESS_TOKEN',
            'X-Authorization': 'Bearer ACCESS_TOKEN',
            'content-type': 'application/json'
        },
        body: {
            {
                business_name: 'David Weinstein Dmd',
                website: http: //newyorkperiodontist.com,
                    phone: (212) 980 - 2800,
                business_email: contactus @newyorkperiodontist.com,
                address: 136 E 64 Th St,
                city: New York,
                zip: 10065,
                state: NY,
                country: United States,
                external_document_id: dec06202101,
                callback_url: https: //webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe
            },
            json: true
        };

        request(options, function(error, response, body) {
            if (error) throw new Error(error);

        });
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/records/enrich");
$request->setMethod(HTTP_METH_POST);
$request->setHeaders(array("cache-control" => "no-cache",
  "authorization" => "Bearer ACCESS_TOKEN",
  "X-Authorization": "Bearer ACCESS_TOKEN"
  "content-type" => "application/json"
));

$request->setBody(
    "{
        "business_name": "David Weinstein Dmd",
        "website": "http://newyorkperiodontist.com",
        "phone": "(212) 980-2800",
        "business_email": "contactus@newyorkperiodontist.com",
        "address": "136 E 64Th St",
        "city": "New York",
        "zip": "10065",
        "state": "NY",
        "country": "United States",
        "external_document_id": "dec06202101",
        "callback_url": "https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe"
    }"
);

try {
  $response = $request->send();
  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/records/enrich")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Post.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request["X-Authorization"] = "Bearer ACCESS_TOKEN"
request["cache-control"] = "no-cache"
request.body = "{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\",\r\n \"external_document_id\":\r\n \"dec0120210354\",\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}"

response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/records/enrich"

payload = "{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\",\r\n \"external_document_id\":\r\n \"dec0120210354\",\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}"
headers = {
    "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "X-Authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("POST", url, data=payload, headers=headers)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://apis.buzzboard.com/v5.0/records/enrich"
	payload := strings.NewReader("{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\",\r\n \"external_document_id\":\r\n \"dec0120210354\",\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}")
	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("content-type", "application/json")
	req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
        req.Header.Add("X-Authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("cache-control", "no-cache")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse response = Unirest.post("https://apis.buzzboard.com/v5.0/records/enrich")
  .header("content-type", "application/json")
  .header("authorization", "Bearer ACCESS_TOKEN")
  .header("X-Authorization", "Bearer ACCESS_TOKEN")
  .header("cache-control", "no-cache")
  .body("{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\",\r\n \"external_document_id\":\r\n \"dec0120210354\",\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}")
  .asString();
{
  "success": true,
  "ref_job_id": "ugyLHAXoc0N6mGG8fbFU5Xss"
}

Response Parameters

Key Data type Description
success

String

Status of the API

ref_job_id

String

Reference Job Id for the set records or the request

{
  "data": [
    [
      {
        "sections": [
          {
            "section_key": "business_section",
            "section_title": "BUSINESS INFO",
            "signals": {
              "business_name": "Trico Graphics And Marketing Communications",
              "website_formatted": "-",
              "website": "trico.com",
              "is_favorite": "-",
              "phone": [
                {
                  "value": "3124215680",
                  "is_default": true
                }
              ],
              "default_email": "-",
              "email_list": "-",
              "status": 1,
              "geo_lat": 41.8868118,
              "geo_lng": -87.6811172,
              "is_verified": "-",
              "report_type": "-",
              "address": {
                "line1": "2140 W Fulton St",
                "city": "Chicago",
                "zip": "60612",
                "state": "IL",
                "country": "us"
              },
              "dscore": 31,
              "additional_url": "-"
            }
          },
          {
            "section_key": "firmographics_section",
            "section_title": "FIRMOGRAPHICS",
            "signals": {
              "locations_count": 2,
              "location_type": "Commercial",
              "annual_revenue": "$5M - $10M",
              "monthly_technology_spend": "$0 - $1K",
              "business_age": "> 10 Y",
              "model": "B2B & B2C",
              "revenue_seasonality": "-",
              "remote_only_business": "No"
            }
          },
          {
            "section_key": "social_media_channels",
            "section_title": "Social",
            "signals": {
              "social_score": {
                "value": 18
              },
              "facebook_page_presence": {
                "value": "No",
                "facebook_likes": "-",
                "facebook_checkins": "-",
                "fp_page_url": "-"
              },
              "twitter_page_presence": {
                "value": "No",
                "twitter_followers": "-",
                "twitter_tweets": "-",
                "twitter_page_url": "-"
              },
              "youtube_page_presence": {
                "value": "No",
                "youtube_page_url": "-"
              },
              "linkedin_page_presence": {
                "value": "Yes",
                "linkedin_page_url": "https://www.linkedin.com/company/trico"
              },
              "pinterest_page_presence": {
                "value": "No",
                "pinterest_follower_count": "-",
                "pinterest_following_count": "-",
                "pinterest_pin_count": "-",
                "pinterest_board_count": "-",
                "pinterest_domain_verified": "-",
                "pinterest_is_verified_merchant": "-"
              },
              "instagram_page_presence": {
                "value": "No",
                "insta_no_of_posts": "-",
                "insta_follower_count": "-",
                "insta_following_count": "-",
                "insta_page_url": "-"
              }
            }
          }
        ],
        "meta": {
          "record_id": "61b73eaf951ab42b495c4362",
          "external_document_id": "13dec202102",
          "ref_job_id": "Svj5q9S4Qul2tFslAcJ42eze",
          "status_code": [
            200
          ]
        }
      }
    ]
  ]
}

Enrich Records - Batch

Enrich multiple records at one go and a callback URL that will be invoked by the API method you are calling.

https://apis.buzzboard.com/v5.0/records/enrichbulk

Parameters

Field Type Description
business_name

String

Name of the record

website

String

Record website. Required unless city and state fields are provided

phone

String

Record phone number

business_email

String

Business Email

address

String

Number, street, suite, or apartment number

city

String

City name

state

String

State name

zip

String

Postal code

country

String

Country name

external_document_id

String

Unique identifier for the record by API consumer

callback_url Required

String

Call back URL to receive enriched data once BuzzBoard enrichment is completed

curl -X POST "https://apis.buzzboard.com/v5.0/records/enrichbulk"
-H "authorization: Bearer ACCESS_TOKEN"
-H "X-Authorization: Bearer ACCESS_TOKEN"
-H "Content-Type: application/json"
-d '{ "records": [ { "business_name": "Cutboard Studio", "website": "cutboardstudio.com", "address": "1521 E Illinois Ave #205", "city": "Spokane", "state": "WA", "zip": "99207", "business_email": "contactus@cutboardstudio.com", "phone": "(786) 633-1533", "country": "United States", "external_document_id": "dec0120210355" }, { "business_name": "Cutboard Studio One", "website": "cutboardstudioone.com", "address": "1521 E Illinois Ave #205", "city": "Spokane", "state": "WA", "zip": "99207", "business_email": "contactus@cutboardstudioone.com", "phone": "(786) 633-1534", "country": "United States", "external_document_id": "dec0120210354" } ], "callback_url": "https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe" }'
var request = require('request');

var options = {
    method: 'POST',
    url: 'https://apis.buzzboard.com/v5.0/records/enrichbulk',
    headers:  {
        'cache-control': 'no-cache',
        'authorization': 'Bearer ACCESS_TOKEN',
        'X-Authorization': 'Bearer ACCESS_TOKEN',
        'content-type': 'application/json'
    },
    body: {
        records: [{
            business_name: Cutboard Studio,
            website: cutboardstudio.com,
            address: 1521 E Illinois Ave #205,
            city: Spokane,
            state: WA,
            zip: 99207,
            business_email: contactus@cutboardstudio.com,
            phone: (786) 633-1533,
            country: United States,
            external_document_id: dec0120210355
        },
        {
            business_name: Cutboard Studio One,
            website: cutboardstudioone.com,
            address: 1521 E Illinois Ave # 205,
            city: Spokane,
            state: WA,
            zip: 99207,
            business_email: contactus @cutboardstudioone.com,
            phone: (786) 633 - 1534,
            country: United States,
            external_document_id: dec0120210354
        }],
        callback_url: https: //webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe
    },
    json: true
};

request(options, function(error, response, body) {
    if (error) throw new Error(error);

});
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/records/enrichbulk");
$request->setMethod(HTTP_METH_POST);
$request->setHeaders(array("cache-control" => "no-cache",
  "authorization" => "Bearer ACCESS_TOKEN",
  "X-Authorization" => "Bearer ACCESS_TOKEN",
  "content-type" => "application/json"
));

$request->setBody(
"{
    "records": [
        {
            "business_name": "Cutboard Studio",
            "website": "cutboardstudio.com",
            "address": "1521 E Illinois Ave #205",
            "city": "Spokane",
            "state": "WA",
            "zip": "99207",
            "business_email": "contactus@cutboardstudio.com",
            "phone": "(786) 633-1533",
            "country": "United States",
            "external_document_id": "dec0120210355"
        },
        {
            "business_name": "Cutboard Studio One",
            "website": "cutboardstudioone.com",
            "address": "1521 E Illinois Ave #205",
            "city": "Spokane",
            "state": "WA",
            "zip": "99207",
            "business_email": "contactus@cutboardstudioone.com",
            "phone": "(786) 633-1534",
            "country": "United States",
            "external_document_id": "dec0120210354"
        }
    ],
    "callback_url": "https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe"
}");

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/records/enrichbulk")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Post.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request["X-Authorization"] = "Bearer ACCESS_TOKEN"
request["cache-control"] = "no-cache"
request.body = "{{\r\n \"records\":[{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\"},{\r\n \"business_name\":\r\n \"Cutboard Studio One\",\r\n \"website\":\r\n \"cutboardstudioone.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudioone.com\",\r\n \"phone\":\r\n \"(786) 633-1534\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210354\"}],\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}}"

response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/records/enrichbulk"

payload = "{{\r\n \"records\":[{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\"},{\r\n \"business_name\":\r\n \"Cutboard Studio One\",\r\n \"website\":\r\n \"cutboardstudioone.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudioone.com\",\r\n \"phone\":\r\n \"(786) 633-1534\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210354\"}],\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}}"
headers = {
    "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "X-Authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("POST", url, data=payload, headers=headers)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://apis.buzzboard.com/v5.0/records/enrichbulk"

	payload := strings.NewReader("{{\r\n \"records\":[{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\"},{\r\n \"business_name\":\r\n \"Cutboard Studio One\",\r\n \"website\":\r\n \"cutboardstudioone.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudioone.com\",\r\n \"phone\":\r\n \"(786) 633-1534\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210354\"}],\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("content-type", "application/json")
	req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
        req.Header.Add("X-Authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("cache-control", "no-cache")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse response = Unirest.post("https://apis.buzzboard.com/v5.0/records/enrichbulk")
  .header("content-type", "application/json")
  .header("authorization", "Bearer ACCESS_TOKEN")
  .header("X-Authorization", "Bearer ACCESS_TOKEN")
  .header("cache-control", "no-cache")
  .body("{\r\n \"records\":[{\r\n \"business_name\":\r\n \"Cutboard Studio\",\r\n \"website\":\r\n \"cutboardstudio.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudio.com\",\r\n \"phone\":\r\n \"(786) 633-1533\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210355\"},{\r\n \"business_name\":\r\n \"Cutboard Studio One\",\r\n \"website\":\r\n \"cutboardstudioone.com\",\r\n \"address\":\r\n \"1521 E Illinois Ave #205\",\r\n \"city\":\r\n \"Spokane\",\r\n \"state\":\r\n \"WA\",\r\n \"zip\":\r\n \"99207\",\r\n \"business_email\":\r\n \"contactus@cutboardstudioone.com\",\r\n \"phone\":\r\n \"(786) 633-1534\",\r\n \"country\":\r\n \"United States\",\r\n \"external_document_id\":\r\n \"dec0120210354\"}],\r\n \"callback_url\":\r\n \"https://webhook.site/2deda3be-0baa-404a-be47-024c865b2fbe\"}")
  .asString();
{
  "success": true,
  "ref_job_id": "ugyLHAXoc0N6mGG8fbFU5Xss"
}

Response Parameters

Key Data type Description
success

String

Status of the API

ref_job_id

String

Reference Job Id for the set records or the request

{
  "data": [
    [
      {
        "sections": [
          {
            "section_key": "business_section",
            "section_title": "BUSINESS INFO",
            "signals": {
              "business_name": "Cheryls On 12th",
              "website_formatted": "-",
              "website": "cherylson12th.com",
              "is_favorite": "-",
              "phone": [
                {
                  "value": "5035952252",
                  "is_default": true
                }
              ],
              "default_email": "info@cherylson12th.com",
              "email_list": [
                "info@cherylson12th.com"
              ],
              "status": 1,
              "geo_lat": 45.52172,
              "geo_lng": -122.68278,
              "is_verified": "-",
              "report_type": "-",
              "address": {
                "line1": "1135 SW Washington St",
                "city": "Portland",
                "zip": "97205",
                "state": "OR",
                "country": "us"
              },
              "dscore": 74,
              "additional_url": "-"
            }
          },
          {
            "section_key": "firmographics_section",
            "section_title": "FIRMOGRAPHICS",
            "signals": {
              "locations_count": 4,
              "location_type": "Commercial",
              "annual_revenue": "$2.5M - $5M",
              "monthly_technology_spend": "$1K - $5K",
              "business_age": "-",
              "model": "B2C",
              "revenue_seasonality": "Spring, Memorial Day, Summer, Xmas, Winter",
              "remote_only_business": "No"
            }
          },
          {
            "section_key": "social_media_channels",
            "section_title": "Social",
            "signals": {
              "social_score": {
                "value": 76
              },
              "facebook_page_presence": {
                "value": "Yes",
                "facebook_likes": "-",
                "facebook_checkins": 0,
                "fp_page_url": "https://facebook.com/pg/357034981042061"
              },
              "twitter_page_presence": {
                "value": "Yes",
                "twitter_followers": "251",
                "twitter_tweets": "439",
                "twitter_page_url": "https://twitter.com/CherylsOn12th"
              },
              "youtube_page_presence": {
                "value": "Yes",
                "youtube_page_url": "https://www.youtube.com/channel/UCyxMg4x3PdyXd0cRxMX00xw"
              },
              "linkedin_page_presence": {
                "value": "No",
                "linkedin_page_url": "-"
              },
              "pinterest_page_presence": {
                "value": "No",
                "pinterest_follower_count": "-",
                "pinterest_following_count": "-",
                "pinterest_pin_count": "-",
                "pinterest_board_count": "-",
                "pinterest_domain_verified": "-",
                "pinterest_is_verified_merchant": "-"
              },
              "instagram_page_presence": {
                "value": "Yes",
                "insta_no_of_posts": "27",
                "insta_follower_count": "1,402",
                "insta_following_count": "302",
                "insta_page_url": "https://www.instagram.com/cherylson12th"
              }
            }
          }
        ],
        "meta": {
          "record_id": "6220a217ded8423322007b80",
          "external_document_id": "mar03202239",
          "ref_job_id": "qsEhTtG1hL8BXGIKhdDbrp7R",
          "status_code": [
            200
          ]
        }
      },
      {
        "sections": [
          {
            "section_key": "business_section",
            "section_title": "BUSINESS INFO",
            "signals": {
              "business_name": "Cutboard Studio",
              "website_formatted": "-",
              "website": "cutboardstudio.com",
              "is_favorite": "-",
              "phone": [
                {
                  "value": "2088202376",
                  "is_default": true
                }
              ],
              "default_email": "contactus@cutboardstudio.com",
              "email_list": [
                "contactus@cutboardstudio.com"
              ],
              "status": 1,
              "geo_lat": 47.679451,
              "geo_lng": -117.3866261,
              "is_verified": "-",
              "report_type": "-",
              "address": {
                "line1": "1521 E Illinois Ave #205",
                "city": "Spokane",
                "zip": "99207",
                "state": "WA",
                "country": "us"
              },
              "dscore": 95,
              "additional_url": "-"
            }
          },
          {
            "section_key": "firmographics_section",
            "section_title": "FIRMOGRAPHICS",
            "signals": {
              "locations_count": 1,
              "location_type": "Commercial",
              "annual_revenue": "-",
              "monthly_technology_spend": "-",
              "business_age": "-",
              "model": "B2B",
              "revenue_seasonality": "-",
              "remote_only_business": "No"
            }
          },
          {
            "section_key": "social_media_channels",
            "section_title": "Social",
            "signals": {
              "social_score": {
                "value": 100
              },
              "facebook_page_presence": {
                "value": "Yes",
                "facebook_likes": "248",
                "facebook_checkins": "3",
                "fp_page_url": "http://www.facebook.com/pg/183237588683864"
              },
              "twitter_page_presence": {
                "value": "Yes",
                "twitter_followers": "46",
                "twitter_tweets": "447",
                "twitter_page_url": "https://twitter.com/CutBoardStudio"
              },
              "youtube_page_presence": {
                "value": "Yes",
                "youtube_page_url": "https://www.youtube.com/c/CutboardStudioSpokane"
              },
              "linkedin_page_presence": {
                "value": "Yes",
                "linkedin_page_url": "https://www.linkedin.com/company/cutboard-studio"
              },
              "pinterest_page_presence": {
                "value": "Yes",
                "pinterest_follower_count": "-",
                "pinterest_following_count": "-",
                "pinterest_pin_count": "-",
                "pinterest_board_count": "-",
                "pinterest_domain_verified": "Yes",
                "pinterest_is_verified_merchant": "No"
              },
              "instagram_page_presence": {
                "value": "Yes",
                "insta_no_of_posts": "390",
                "insta_follower_count": "908",
                "insta_following_count": "2,481",
                "insta_page_url": "https://www.instagram.com/cutboard_studio"
              }
            }
          }
        ],
        "meta": {
          "record_id": "6221e2628090ea0fb7459642",
          "external_document_id": "dec0120560315",
          "ref_job_id": "c8kpky9H5De9fkvK6DbEMJlW",
          "status_code": [
            200,
            1027
          ]
        }
      }
    ]
  ]
}

Enrich Records - NAP

Get name, address, phone number & categories for an individual business.

https://apis.buzzboard.com/v5.0/nap/geturldata

Parameters

Field Type Description
url Required

String

Website url

curl -X POST "https://apis.buzzboard.com/v5.0/nap/geturldata"
-H "authorization: Bearer ACCESS_TOKEN"
-H "cache-control: no-cache"
-H "content-type: application/json"
-d '{ "data": { "url": "ecowaterofindiana.com" } }'
var options = {
    "method": "POST",
    "hostname":  "https://apis.buzzboard.com/" ,
    "path":  "/v5.0/nap/geturldata",
    "headers": {
      "Content-Type": "application/json",
      "Authorization": "Bearer ",
    }
   };

   var req = http.request(options, function (res) {
    var chunks = [];

    res.on("data", function (chunk) {
      chunks.push(chunk);
    });

    res.on("end", function () {
      var body = Buffer.concat(chunks);
      console.log(body.toString());
    });
   });

   req.write(JSON.stringify({ url: "ecowaterofindiana.com" }));
   req.end();
  $request = new HttpRequest();
  $request->setUrl("https://apis.buzzboard.com/v5.0/nap/geturldata");
  $request->setMethod(HTTP_METH_POST);
  $request->setHeaders(array("cache-control" => "no-cache",
    "authorization" => "Bearer ACCESS_TOKEN",
    "content-type" => "application/json"
  ));

  $request->setBody("JSON.stringify({ url: "ecowaterofindiana.com" })");

  try {
    $response = $request->send();

    echo $response->getBody();
  } catch (HttpException $ex) {
    echo $ex;
  }
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/nap/geturldata")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Post.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request.body = JSON.stringify({ url: "ecowaterofindiana.com" })

response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/nap/geturldata"

payload = JSON.stringify({ url: "ecowaterofindiana.com" })
headers = {
    "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("POST", url, data=payload, headers=headers)
package main

import (
        "fmt"
        "strings"
        "net/http"
        "io/ioutil"
)

func main() {

        url := "https://apis.buzzboard.com/v5.0/nap/geturldata"

        payload := strings.NewReader(JSON.stringify({ url: "ecowaterofindiana.com" }))

        req, _ := http.NewRequest("POST", url, payload)

        req.Header.Add("content-type", "application/json")
        req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
        req.Header.Add("cache-control", "no-cache")

        res, _ := http.DefaultClient.Do(req)

        defer res.Body.Close()
        body, _ := ioutil.ReadAll(res.Body)

        fmt.Println(res)
        fmt.Println(string(body))

}
HttpResponse response = Unirest.post("https://apis.buzzboard.com/v5.0/nap/geturldata")
    .header("content-type", "application/json")
    .header("authorization", "Bearer ACCESS_TOKEN")
    .header("cache-control", "no-cache")
    .body(JSON.stringify({ url: "ecowaterofindiana.com" }))
    .asString();
{
  "requested_url": "ecowaterofindiana.com",
  "website_status": 200,
  "business_name": "Bottled Water & POC",
  "address_info": [
    {
      "StreetAddress": "615 S. Carroll Street",
      "city": "Wabash",
      "state": "IN",
      "zipCode": "46992",
      "country": "US"
    }
  ],
  "phone_numbers": [
    "8005217484"
  ],
  "categories": [
    "Water Filtration & Treatment",
    "Water Treatment Equipment Service & Supplies"
  ]
}

Response Parameters

Key Data type Description
business_name

String

Business name detected for the requested URL

requested_url

String

URL parameter received in the request

website_status

Number

Status of the website domain

phone_numbers

Array

List of business phone number(s)

address_info

Array

Business address details

categories

Array

List of business category(s)

Categories

The categories we detect to the business records requested

Categories - List

Retrieves a list of categories

https://apis.buzzboard.com/v5.0/categories

Returns a list of all categories available.

curl -X GET "https://apis.buzzboard.com/v5.0/categories"
-H "authorization: Bearer ACCESS_TOKEN
var request = require('request');
var options = { 
method: 'GET', 
url: 'https://apis.buzzboard.com/v5.0/categories',headers: 
   { 'cache-control': 'no-cache',
     authorization: 'Bearer ACCESS_TOKEN',
     'content-type': 'application/json' },
 request(options, function (error, response, body) {
 if (error) throw new Error(error);
}
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/categories");
$request->setMethod(HTTP_METH_GET);
$request->setHeaders(array("cache-control" => "no-cache",
  "authorization" => "Bearer ACCESS_TOKEN",
  "content-type" => "application/json"
));

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/categories")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request["cache-control"] = "no-cache"
response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/categories"


headers = {
    "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("GET", url, headers=headers))
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://apis.buzzboard.com/v5.0/categories"
	
	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)
        
        req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("content-type", "application/json")
	req.Header.Add("cache-control", "no-cache")

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse response = Unirest.get("https://apis.buzzboard.com/v5.0/categories")
  .header("authorization", "Bearer ACCESS_TOKEN")
  .header("content-type", "application/json")
  .header("cache-control", "no-cache")
  .asString();
{
  "data": [
    {
      "id": 280000000,
      "name": "Aids Resources"
    },
    {
      "id": 280000001,
      "name": "Aids"
    },
    {
      "id": 280000002,
      "name": "Aids Confidential Services"
    },
    {
      "id": 280001000,
      "name": "Aids Hiv Educational Referral & Support Services"
    },
    {
      "id": 280001001,
      "name": "Aids Information & Counseling Services"
    }
  ],
  "meta": {
    "count": 60738
  }
}

Response Parameters

Key Data type Description
id

Number

Category Id

name

String

Category name

meta.count

Number

Total available Categories count

Record Signals

Enriches the records with the multiple signals and are assigned with a grade

Record Signals - Signals

Retrieves the required record signals individually or by the categorized group.

https://apis.buzzboard.com/v5.0/profile/signals?record_id={id}

Parameters

Field Type Description
record_id Required

String

The unique identifier of the record. Use this API to retrive the record with all the signals. "record_id" will be available in the response received by callback_url (e.g.) ?record_id=61ae21b7c1ad50566494871c

Returns list of all record signals.

curl -X GET "https://apis.buzzboard.com/v5.0/profile/signals?record_id=61ae21b7c1ad50566494871c"
-H "authorization: Bearer ACCESS_TOKEN"
var request = require('request');

var options = { method: 'GET',
url: 'https://apis.buzzboard.com/v5.0/profile/signals',
qs: { record_id: '61ae21b7c1ad50566494871c' },
'headers: 
   { 'cache-control': 'no-cache',
      authorization: 'Bearer ACCESS_TOKEN',
     'content-type': 'application/json' },
 request(options, function (error, response, body) {
  if (error) throw new Error(error);
}
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/profile/signals");
$request->setMethod(HTTP_METH_GET);
$request->setQueryData(array(
  "record_id" => "61ae21b7c1ad50566494871c"
));

$request->setHeaders(array(
  "cache-control" => "no-cache",
  "content-type" => "application/json",
  "authorization" => "Bearer ACCESS_TOKEN"
));
try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/profile/signals?record_id=61ae21b7c1ad50566494871c")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request["cache-control"] = "no-cache"
response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/profile/signals"

querystring = {"record_id":"61ae21b7c1ad50566494871c"}

headers = {
    "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("GET", url, headers=headers, params=querystring)
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

    url := "https://apis.buzzboard.com/v5.0/profile/signals?record_id=61ae21b7c1ad50566494871c"

	req, _ := http.NewRequest("GET", url, nil)
	
	req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("content-type", "application/json")
	req.Header.Add("cache-control", "no-cache")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)


}
HttpResponse response = Unirest.get("https://apis.buzzboard.com/v5.0/profile/signals?record_id=61ae21b7c1ad50566494871c")
  .header("authorization", "Bearer ACCESS_TOKEN")
  .header("content-type", "application/json")
  .header("cache-control", "no-cache")
  .asString();
{
  "sections": [
    {
      "section_key": "business_section",
      "section_title": "BUSINESS INFO",
      "signals": {
        "business_name": "Team Taylor Doors.",
        "website_formatted": "-",
        "website": "teamtaylordoors.com",
        "domain_tld": ".com",
        "is_favorite": "-",
        "phone": [
          {
            "value": "8162089619",
            "is_default": true
          },
          {
            "value": "8168126392",
            "is_default": false
          }
        ],
        "default_email": "info@teamtaylorkc.com",
        "email_list": [
          "info@teamtaylorkc.com"
        ],
        "status": 1,
        "geo_lat": 38.9116097,
        "geo_lng": -94.3798203,
        "is_verified": "-",
        "report_type": "-",
        "address": {
          "line1": "210 SW Market St Suite 144",
          "city": "Lee Summit",
          "zip": "64063",
          "state": "MO",
          "country": "us"
        },
        "business_is_headquarter": "Yes",
        "dscore": 92,
        "additional_url": "-"
      }
    },
    {
      "section_key": "contact_section",
      "section_title": "CONTACT INFO",
      "signals": {
        "contacts": "-"
      }
    },
    {
      "section_key": "category_section",
      "section_title": "CATEGORY",
      "signals": {
        "categories": [
          {
            "id": 132000000,
            "name": "Garage Doors",
            "naic_code": "423310",
            "sic_code": "5031",
            "months": [
              "mar",
              "apr",
              "may"
            ],
            "avg_revenue": "-",
            "revenue_seasonality": "Spring, Memorial Day",
            "is_primary": true
          },
          {
            "id": 132001008,
            "name": "Garage Door Systems",
            "naic_code": "423310",
            "sic_code": "5031",
            "months": [
              "mar",
              "apr",
              "may"
            ],
            "avg_revenue": "-",
            "revenue_seasonality": "Spring, Memorial Day",
            "is_primary": false
          }
        ]
      }
    },
    {
      "section_key": "firmographics_section",
      "section_title": "FIRMOGRAPHICS",
      "signals": {
        "locations_count": 2,
        "location_type": "Commercial",
        "annual_revenue": "-",
        "monthly_technology_spend": "-",
        "business_age": "-",
        "model": "B2B & B2C",
        "revenue_seasonality": "Spring, Memorial Day",
        "remote_only_business": "No"
      }
    },
    {
      "section_key": "technologies_section",
      "section_title": "Technology",
      "signals": {
        "technologies": [
          {
            "group_name": "Analytics and Tracking",
            "list": [
              "Google Analytics"
            ]
          },
          {
            "group_name": "CMS",
            "list": [
              "WordPress.org"
            ]
          },
          {
            "group_name": "Email Providers",
            "list": [
              "Outlook"
            ]
          },
          {
            "group_name": "Hosting",
            "list": [
              "Google Sites"
            ]
          },
          {
            "group_name": "Call Tracking",
            "list": [
              "CallRail"
            ]
          }
        ]
      }
    },
    {
      "section_key": "local_business_presence",
      "section_title": "LOCAL BUSINESS PRESENCE",
      "signals": {
        "local_directory_nextdoor_presence": "Yes",
        "local_directory_nextdoor_business_name": "Aire Texas Residential Services Inc",
        "local_directory_nextdoor_description": "Aire Texas is a family owned HVAC company serving Collin, Dallas, Denton and part of Rockwall counties. We bring a high level attention to every job, regardless of the size whether it be a repair, installation or maintenance.  Aire Texas also offers Duct Cleanings, Attic Insulation and Home Automation. ",
        "local_directory_nextdoor_recommendation": "22",
        "local_directory_nextdoor_local_deals": "",
        "local_directory_nextdoor_lic_number": "Lic. TACLB15156E",
        "local_directory_nextdoor_neighborhood_favorite": "No",
        "local_directory_googleplaces_reviews": "Yes",
        "local_directory_googleplaces_reviews_count": 421,
        "local_directory_googleplaces_ratings": 5,
        "local_directory_googleplaces_page_url": "maps.google.com",
        "local_directory_yelp_presence": "Yes",
        "local_directory_yelp_is_claimed": "Yes",
        "local_directory_yelp_reviews": 121,
        "local_directory_yelp_ratings": 5,
        "local_directory_yelp_page_url": "https://www.yelp.com/biz/jacks-tile-and-carpet-newport-news",
        "local_directory_yellow_pages_presence": "Yes",
        "local_directory_yellow_pages_claimed": "Yes",
        "local_directory_yellow_pages_page_url": "https://www.yellowpages.com/somerville-nj/mip/intercept-silver-jewelry-care-co-469957527"
      }
    },
    {
      "section_key": "hr_hiring",
      "section_title": "HR & Hiring",
      "signals": {
        "employees_size": "-",
        "indeed_review_count": 0,
        "indeed_overall_rating": 0,
        "jobs_count": 0,
        "hiring": "No"
      }
    },
    {
      "section_key": "digital_security_and_privacy",
      "section_title": "Digital Security",
      "signals": {
        "security_composite_score": {
          "value": 20
        },
        "is_malware_presence": "-",
        "sensitive_information_security": "Yes",
        "is_server_secured": "Yes",
        "privacy_policy": "Yes"
      }
    },
    {
      "section_key": "infrastructure_robustness_and_security",
      "section_title": "Infrastructure",
      "signals": {
        "page_cache_enabled": "No",
        "page_file_compression": "No",
        "page_server_response_time": 0,
        "website_cms": "WordPress.org"
      }
    },
    {
      "section_key": "communication",
      "section_title": "Communication",
      "signals": {
        "data_usage": "Medium",
        "page_phone_number_toll_free": "No",
        "video_calling_platform": "Not Detected",
        "email_platform": "Outlook",
        "help_desk": "Not Detected",
        "contact_center": "Not Detected"
      }
    },
    {
      "section_key": "online_presence",
      "section_title": "Online Presence",
      "signals": {
        "page_home_links_count": 20,
        "page_bb_mobile_compatible": "Yes",
        "content_maturity_score": {
          "value": 90
        },
        "page_trustflow": 5,
        "google_my_business_presence": "Yes",
        "website": "teamtaylordoors.com",
        "domain_registrar": "GoDaddy.com, LLC",
        "domain_registration_date": "November 13, 2016",
        "domain_age": "5Y, 4M",
        "website_page_count": 7,
        "page_lang": [
          "en"
        ],
        "domain_valid": "Yes",
        "additional_url": "buzzboard.com"
      }
    },
    {
      "section_key": "social_media_channels",
      "section_title": "Social",
      "signals": {
        "social_score": {
          "value": 100
        },
        "facebook_page_presence": {
          "value": "Yes",
          "facebook_likes": "-",
          "facebook_checkins": 0,
          "fp_page_url": "http://www.facebook.com/pg/1282769115087191",
          "facebook_overall_star_rating": 5
        },
        "twitter_page_presence": {
          "value": "Yes",
          "twitter_followers": "34",
          "twitter_tweets": "177",
          "twitter_page_url": "https://twitter.com/TeamTaylorDoors"
        },
        "youtube_page_presence": {
          "value": "Yes",
          "youtube_page_url": "https://www.youtube.com",
          "youtube_page_presence": 500
        },
        "linkedin_page_presence": {
          "value": "Yes",
          "linkedin_page_url": "https://www.linkedin.com/company/team-taylor-doors"
        },
        "pinterest_page_presence": {
          "value": "Yes",
          "pinterest_follower_count": "-",
          "pinterest_following_count": "-",
          "pinterest_pin_count": "595",
          "pinterest_board_count": "20",
          "pinterest_domain_verified": "No",
          "pinterest_is_verified_merchant": "No"
        },
        "instagram_page_presence": {
          "value": "Yes",
          "insta_no_of_posts": "63",
          "insta_follower_count": "250",
          "insta_following_count": "102",
          "insta_page_url": "https://www.instagram.com/teamtaylordoors",
          "insta_last_post_date": "2020-11-03T00:00:00.000Z"
        }
      }
    },
    {
      "section_key": "market_place",
      "section_title": "Marketplace",
      "signals": {
        "home_advisor": {
          "value": "Yes",
          "local_directory_home_advisor_business_name": "Team Taylor Doors",
          "local_directory_home_advisor_business_since": "2016",
          "local_directory_home_advisor_is_claimed": "Yes",
          "local_directory_home_advisor_services_offered": [
            "Garage Door Repair",
            "Garage Door Opener Install",
            "Garage Door Opener Repair"
          ],
          "local_directory_home_advisor_services_area": [
            "Lansing",
            "Fort Leavenworth",
            "Kearney",
            "Linwood",
            "Leavenworth",
            "Butler",
            "Farley",
            "Peculiar",
            "Buckner",
            "Harrisonville",
            "Centerville",
            "Excelsior Springs",
            "Spring Hill",
            "Independence",
            "Cleveland",
            "New Century",
            "Hillsdale",
            "Freeman",
            "Weston",
            "Louisburg",
            "Holden",
            "Pleasanton",
            "Basehor",
            "Gardner",
            "Missouri City",
            "Eudora",
            "Edgerton",
            "Overland Park",
            "Lexington",
            "Pleasant Hill",
            "Edwardsville",
            "Shawnee",
            "Dearborn",
            "Olathe",
            "Blue Springs",
            "Greeley",
            "Mission",
            "Greenwood",
            "Stilwell",
            "Odessa",
            "Easton",
            "Belton",
            "Osawatomie",
            "Grandview",
            "Raymore",
            "Paola",
            "Leawood",
            "Oak Grove",
            "Sibley",
            "Lone Jack",
            "Mosby",
            "De Soto",
            "Camden Point",
            "Grain Valley",
            "Wellsville",
            "Platte City",
            "Levasy",
            "Mound City",
            "Bucyrus",
            "Liberty",
            "Parker",
            "Waldron",
            "Lees Summit",
            "Kansas City",
            "Lenexa",
            "Bonner Springs",
            "Smithville",
            "Fontana"
          ],
          "local_directory_home_advisor_product_brands": [
            "Liftmaster",
            "Clopay",
            "Delden",
            "Chamberlain",
            "Amarr/Hammer Network"
          ],
          "local_directory_home_advisor_ratings": "4.8",
          "local_directory_home_advisor_reviews_list": [
            {
              "address": "Kansas City, MO",
              "review": "I had written a previous bad review of this company but we have since had a new conversation and a revisit from them and they were EXCELLENT. They righted a misperceived wrong and did a very professional and satisfactory completion of the original job (a garage door opener). Highly recommended!!",
              "author": "Joe D.",
              "rating": "5.0",
              "title": "Install or Replace a Garage Door Opener",
              "datepublished": "12/13/2021"
            },
            {
              "address": "Kansas City, MO",
              "review": "It took almost 3 weeks to get any action out of them. Had to call 3 times to get an update. Finally installed a new control panel which did not work. They requested permission to replace the entire garage door opener (with an unknown brand) for $600! Ours is a 1.5 HP Craftsman that you can get at Lowes for less than $200. Home Warranty would only approve of $300. So $300 out of pocket! They refused to find us a new less expensive unit so we refused the replacement and are looking for a new contractor. We were told that this was what they had in stock and pretty much **take it or leave it!** We will leave it. Poor communication and worse service!",
              "author": "Joe D.",
              "rating": "1.5",
              "title": "Install or Replace a Garage Door Opener",
              "datepublished": "11/26/2021"
            },
            {
              "address": "Kansas City, MO",
              "review": "Received prompt and professional service.  Was given options for consideration for my project.  Technician came consistent with the appointment and installed the opener quickly.  I would hire Team Taylor again.  The overall experience was very satisfactory.",
              "author": "Earnest R.",
              "rating": "5.0",
              "title": "Install or Replace a Garage Door Opener",
              "datepublished": "8/12/2021"
            },
            {
              "address": "Kansas City, MO",
              "review": "Very Efficient .",
              "author": "Sherry E.",
              "rating": "5.0",
              "title": "Repair a Garage Door",
              "datepublished": "7/29/2021"
            },
            {
              "address": "Kansas City, MO",
              "review": "Was able to schedule a time for them to come quickly and they got the job done well.",
              "author": "Zach H.",
              "rating": "5.0",
              "title": "Repair a Garage Door",
              "datepublished": "5/19/2021"
            },
            {
              "address": "Independence, MO",
              "review": "professional.",
              "author": "Ted A.",
              "rating": "5.0",
              "title": "Repair a Garage Door",
              "datepublished": "5/5/2021"
            },
            {
              "address": "Kansas City, MO",
              "review": "I was very impressed with everything about them. My plan was to just replace the garage door, but I ended up replacing the opener as well.",
              "author": "Sandy S.",
              "rating": "5.0",
              "title": "Repair a Garage Door",
              "datepublished": "2/24/2021"
            },
            {
              "address": "Kansas City, MO",
              "review": "Very fast response to inquiry. Very prompt for appointment. Very professional & knowledgeable. Patiently explained situation & offered options.",
              "author": "Tasha P.",
              "rating": "5.0",
              "title": "Repair a Garage Door",
              "datepublished": "2/23/2021"
            },
            {
              "address": "Liberty, MO",
              "review": "I had 2 garage doors replaced and 1 garage door opener replaced. One garage door was blocking a side door from opening fully and TTaylor was able to raise the new garage door to correct that situation.  The original installer had an injury and had to leave the job.  The owner came back later and worked in the rain to get the work done and it was after 9 pm when he was done.  He certainly put forth the effort to complete the work.  This was over a year ago and I have had no problems.  I would definitely recommend Team Taylor for the quality of their work and for their effort for customer satisfaction.",
              "author": "Ed C.",
              "rating": "5.0",
              "title": "Install or Replace a Garage Door",
              "datepublished": "2/22/2021"
            }
          ],
          "local_directory_home_advisor_reviews": 223,
          "local_directory_home_advisor_deals_offered": [
            {
              "deal_title": "Save 10%",
              "deal_text": "Save 10% on Service Call/Labor",
              "deal_link": "/rfs/serviceprofessional/modularprofile/profileDirectoryDeal.jsp?dealID=209340&XM_SP_ID=60663632"
            },
            {
              "deal_title": "Free Offer",
              "deal_text": "Free Offer! Get A Garage Door Safety Inspection free when Yo ...",
              "deal_link": "/rfs/serviceprofessional/modularprofile/profileDirectoryDeal.jsp?dealID=299025&XM_SP_ID=60663632"
            }
          ],
          "local_directory_home_advisor_page_url": "https://www.homeadvisor.com/rated.TeamTaylorDoors.60663632.html"
        },
        "thumbtack": {
          "value": "Yes",
          "local_directory_thumbtack_business_name": "Team Taylor Doors",
          "local_directory_thumbtack_description": "Introduction: TeamTaylorDoors specializes in customer satisfaction. Our absolute number one goal is making sure the customer is happy, knowledgeable and above all, satisfied with our completed work. No need to invite us to dinner... Quality service with a smile is just what we do.\n\nHere at Team Taylor Doors, we enjoy bringing beauty back to homes with our newer garage doors & openers. As well as bring life back into older equipment. Working with our hands has always been our bread and butter. On top of that, we get to meet friendly new faces every day. That alone makes every visit truly special....Read More",
          "local_directory_thumbtack_categories": "garage door repair",
          "local_directory_thumbtack_years_in_business": 5,
          "local_directory_thumbtack_estimated_cost": "-",
          "local_directory_thumbtack_ratings_double": 4,
          "local_directory_thumbtack_reviews_count_int": 120,
          "local_directory_thumbtack_no_of_times_hired": 162,
          "local_directory_thumbtack_offeres_remote": "-",
          "local_directory_thumbtack_payment_method": "Apple Pay, Cash, Check, Credit card, PayPal, Samsung Pay, Venmo, Zelle",
          "local_directory_thumbtack_discounts_available": "Yes",
          "local_directory_thumbtack_page_url": "https://www.thumbtack.com/mo/lees-summit/garage-door-repair/team-taylor-doors/service/287504782433403994",
          "local_directory_thumbtack_rating_summary": {
            "1": "0%",
            "2": "0%",
            "3": "0%",
            "4": "5%",
            "5": "95%"
          },
          "local_directory_thumbtack_reviews_list": [
            {
              "review_date": "Jan 21, 2022",
              "review": "Really impressed with Team Taylor Doors.  The handled my garage door project quickly and professionally.",
              "rating": 5,
              "username": "Jeff D."
            },
            {
              "review_date": "Nov 3, 2021",
              "review": "On time and great service!  Fixed the problem quickly.  I will call them again.",
              "rating": 5,
              "username": "Sheron s."
            },
            {
              "review_date": "Sep 26, 2021",
              "review": "Great service. Very knowledgeable and helpful throughout the process.",
              "rating": 5,
              "username": "Derrick R."
            },
            {
              "review_date": "Sep 23, 2021",
              "review": "Just bought a house in Excelsior Springs and one of our garage doors would not pair with a remote, tried everything so called for help. Ryan came out and suspected it was the board going out and that it was not transmitting signal. We tried the cheaper fix of just replacing boards but problem still remained, we ended up needing to replace the whole unit but they gave me a deal on it because the original troubleshooting took a few tries. New opener is working great though, quieter than before and also safer for my kid. Thanks again!",
              "rating": 5,
              "username": "Tyler W."
            },
            {
              "review_date": "Jul 30, 2021",
              "review": "Our garage door cable broke, and these guys were at our less in less than a day to get it fixed.  Excellent communication, showed up exactly at the time provided and were personable while fixing our garage door.  Highly recommend and will be using again!",
              "rating": 5,
              "username": "Jason D."
            }
          ],
          "local_directory_thumbtack_verified": 1
        },
        "android_app": {
          "mobile_app_android_presence": "No",
          "mobile_app_android_url": "-"
        },
        "ios_app": {
          "mobile_app_ios_presence": "No",
          "mobile_app_ios_url": "-"
        }
      }
    },
    {
      "section_key": "advertising",
      "section_title": "Advertising",
      "signals": {
        "advertising_composite_score": {
          "value": 41
        },
        "page_google_adwords": {
          "value": "Yes",
          "google_adwords_cost": "$1K - $5K",
          "google_traffic": "202.84"
        },
        "display_ads_presence": "No",
        "facebook_ads_presence": "No",
        "local_directory_home_advisor_is_advertisers": "Yes",
        "local_directory_thumbtack_is_advertisers": "Yes",
        "local_directory_yelp_is_yelp_advertiser": "Yes",
        "running_any_ads": "Yes"
      }
    },
    {
      "section_key": "e_commerce_signals",
      "section_title": "E-Commerce",
      "signals": {
        "e_commerce": {
          "ecom_platform_created_at": "-",
          "delivery_return_policy": "Yes",
          "ecom_enabled": "Yes",
          "e_commerce_ready": "Yes"
        },
        "inventory_tracking": {
          "reservation_and_booking": "Yes",
          "online_ordering": "No"
        },
        "customer_feedback": {
          "reviews": "Yes"
        },
        "product_insight": {
          "product_count": "-",
          "avg_product_price": "-",
          "featured_products": "Yes",
          "promotions": "Yes",
          "coupons": "Yes"
        },
        "commerce_page": {
          "buying_page": "No",
          "selling_page": "No",
          "rentals_page": "No"
        },
        "interactive_widgets": {
          "menu": "No",
          "scheduler": "Yes",
          "mortgage_calculator": "No",
          "inventory_search_form": "No",
          "finance": "Yes",
          "wish_list": "No",
          "order_tracking": "No",
          "get_a_quote": "Yes",
          "estimates_page": "Yes"
        },
        "market_place": {
          "facebook_shop_presence": "No",
          "amazon_page_presence": "No"
        },
        "technology_breakdown": {
          "monthly_technology_spend_tb": "-",
          "monthly_app_spend_grade": "-"
        },
        "e_commerce_technology": {
          "ecom_installed_apps": "-",
          "ecom_plan": "-",
          "ecom_last_plan_change_at": "-",
          "e_commerce_platforms": "Not Detected",
          "ecom_last_platform_tech_id": "-",
          "e_commerce_tools": "Not Detected",
          "payments": "Not Detected"
        }
      }
    },
    {
      "section_key": "assets",
      "section_title": "ASSETS",
      "signals": {
        "pdf_short_url": "https://sales.buzzboard.com/demandsurl_4449c900"
      }
    }
  ],
  "meta": {
    "record_id": "622af14c341129747962c88e",
    "external_document_id": "11032022Demo03ht",
    "ref_job_id": "UCTSro0nhpInuN7e1KPxZHP5",
    "status_code": [
      1026,
      200,
      1027
    ]
  }
}

Response Parameters

Key Data type Description
section_key

Number

Section Key for reference

section_title

String

Title of the Section

signals

Array

List of available signals for the section

meta.record_id

String

BuzzBoard reference record id

meta.external_document_id

String

Unique identifier for the record by API consumer

meta.ref_job_id

String

BuzzBoard reference job id of the record

meta.status_code

String

Custom status codes for defining the record status

Record Signals - Schema

Utilize the Schema API to get the required signals individually or by group.

https://apis.buzzboard.com/v5.0/profile/schema

Returns list of all record signals.

curl -X GET "https://apis.buzzboard.com/v5.0/profile/schema"
-H "authorization: Bearer ACCESS_TOKEN"
var request = require('request');

var options = { method: 'GET',
  url: 'https://apis.buzzboard.com/v5.0/profile/schema',
  headers: 
   { 'cache-control': 'no-cache',
      authorization: 'Bearer ACCESS_TOKEN',
     'content-type': 'application/json' } };
request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/profile/schema");
$request->setMethod(HTTP_METH_GET);

$request->setHeaders(array(
  "cache-control" => "no-cache",
  "content-type" => "application/json",
  "authorization" => "Bearer ACCESS_TOKEN"
));

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/profile/schema")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request["cache-control"] = "no-cache"

response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/profile/schema"

headers = {
     "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("GET", url, headers=headers)
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://apis.buzzboard.com/v5.0/profile/schema"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("content-type", "application/json")
	req.Header.Add("cache-control", "no-cache")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse response = Unirest.get("https://apis.buzzboard.com/v5.0/profile/schema")
  .header("authorization", "Bearer 8ab94b04-5c20-307d-902f-275bb0089b22")
  .header("content-type", "application/json")
  .header("cache-control", "no-cache")
  .header("postman-token", "66c2113d-d5e8-7f08-09fc-a26c7159ac3a")
  .asString();
{
  "sections": [
    {
      "section_key": "business_section",
      "section_title": "BUSINESS INFO",
      "signals": [
        {
          "key": "business_name",
          "name": "Company Name",
          "type": "String",
          "sample_or_possible_value": "Audi Dallas"
        },
        {
          "key": "website_formatted",
          "name": "Website Formatted",
          "type": "String",
          "sample_or_possible_value": "hachroselaw.com"
        },
        {
          "key": "website",
          "name": "Website",
          "type": "String",
          "sample_or_possible_value": "https://www.hachroselaw.com"
        },
        {
          "key": "domain_tld",
          "name": "Domain TLD",
          "type": "String",
          "sample_or_possible_value": ".com/.org/.edu"
        },
        {
          "key": "is_favorite",
          "name": "Is Favorite",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "phone",
          "name": "Business Phone",
          "type": "Array",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "2129802800"
            },
            {
              "key": "is_default",
              "name": "Is Phone Default",
              "type": "Boolean",
              "sample_or_possible_value": "true/false"
            }
          ]
        },
        {
          "key": "default_email",
          "name": "Business Email",
          "type": "String",
          "sample_or_possible_value": "info@hachroselaw.com"
        },
        {
          "key": "email_list",
          "name": "Email List",
          "type": "Array",
          "sample_or_possible_value": [
            "info@drdavidweinstein.com"
          ]
        },
        {
          "key": "status",
          "name": "Status",
          "type": "Numeric",
          "sample_or_possible_value": "1/0"
        },
        {
          "key": "geo_lat",
          "name": "Geo Latitude",
          "type": "Decimal",
          "sample_or_possible_value": 32.8233048
        },
        {
          "key": "geo_lng",
          "name": "Geo Longitude",
          "type": "Decimal",
          "sample_or_possible_value": -96.8197939
        },
        {
          "key": "is_verified",
          "name": "Is Verified",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "report_type",
          "name": "Report Type",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "address",
          "name": "Address",
          "type": "Object",
          "sub_signals": [
            {
              "key": "line1",
              "name": "Street address",
              "type": "String",
              "sample_or_possible_value": "5033 Lemmon Ave"
            },
            {
              "key": "city",
              "name": "City",
              "type": "String",
              "sample_or_possible_value": "Dallas"
            },
            {
              "key": "zip",
              "name": "Zip Code",
              "type": "String",
              "sample_or_possible_value": "75209"
            },
            {
              "key": "state",
              "name": "State",
              "type": "String",
              "sample_or_possible_value": "TX"
            },
            {
              "key": "country",
              "name": "Country",
              "type": "String",
              "sample_or_possible_value": "US"
            }
          ]
        },
        {
          "key": "business_is_headquarter",
          "name": "Headquarters",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "dscore",
          "name": "Digital Maturity score",
          "type": "Numeric",
          "sample_or_possible_value": "87"
        },
        {
          "key": "additional_url",
          "name": "Additional URL",
          "type": "String",
          "sample_or_possible_value": "https://www.yelp.com/biz/jacks-tile-and-carpet-newport-news"
        }
      ]
    },
    {
      "section_key": "contact_section",
      "section_title": "CONTACT INFO",
      "signals": [
        {
          "key": "Contacts",
          "name": "Contacts",
          "type": "Array",
          "sub_signals": [
            {
              "key": "contact_name",
              "name": "Contact Name",
              "type": "String",
              "sample_or_possible_value": "Adam Figueroa"
            },
            {
              "key": "first_name",
              "name": "First Name",
              "type": "String",
              "sample_or_possible_value": "Adam"
            },
            {
              "key": "last_name",
              "name": "Last Name",
              "type": "String",
              "sample_or_possible_value": "Figueroa"
            },
            {
              "key": "email",
              "name": "Contact Email",
              "type": "String",
              "sample_or_possible_value": "adam.figueroa@audidallas.com"
            },
            {
              "key": "phone",
              "name": "Contact Phone",
              "type": "String",
              "sample_or_possible_value": "2129802800"
            },
            {
              "key": "linkedin_profile",
              "name": "Contact LinkedIn URL",
              "type": "String",
              "sample_or_possible_value": "https://www.linkedin.com/in/adam-figueroa-8071b98a"
            },
            {
              "key": "designation",
              "name": "Designation",
              "type": "String",
              "sample_or_possible_value": "Assistant Sales Manager"
            },
            {
              "key": "mobile",
              "name": "Mobile",
              "type": "String",
              "sample_or_possible_value": "2129802800"
            },
            {
              "key": "title",
              "name": "Title",
              "type": "String",
              "sample_or_possible_value": "Director Of Patient Finance"
            },
            {
              "key": "cdb_contact_id",
              "name": "CDB Contact Id",
              "type": "String",
              "sample_or_possible_value": "5e18053d2c0ccf6258bfe1a5"
            }
          ]
        }
      ]
    },
    {
      "section_key": "category_section",
      "section_title": "CATEGORY",
      "signals": [
        {
          "key": "categories",
          "name": "Categories",
          "type": "Array",
          "sub_signals": [
            {
              "key": "id",
              "name": "ID",
              "type": "Numeric",
              "sample_or_possible_value": 1000000
            },
            {
              "key": "name",
              "name": "Name",
              "type": "String",
              "sample_or_possible_value": "Automobile - Dealers"
            },
            {
              "key": "naic_code",
              "name": "NAIC Code  (Primary Category) / NAIC Code  (Secondary Category)",
              "type": "String",
              "sample_or_possible_value": "441110"
            },
            {
              "key": "sic_code",
              "name": "SIC Code  (Primary Category) / SIC Code  (Secondary Category)",
              "type": "String",
              "sample_or_possible_value": "5511"
            },
            {
              "key": "months",
              "name": "Months",
              "type": "Array",
              "sample_or_possible_value": [
                "Mar",
                "Apr",
                "May",
                "Sep",
                "Oct",
                "Nov"
              ]
            },
            {
              "key": "avg_revenue",
              "name": "Avg Revenue/Business",
              "type": "String",
              "sample_or_possible_value": "$38979.62k"
            },
            {
              "key": "revenue_seasonality",
              "name": "Revenue Seasonality",
              "type": "String",
              "sample_or_possible_value": "Spring, Memorial Day, Labour Day, Fall, Halloween, Veterans Day"
            },
            {
              "key": "is_primary",
              "name": "Is Primary",
              "type": "Boolean",
              "sample_or_possible_value": "true/false"
            }
          ]
        }
      ]
    },
    {
      "section_key": "firmographics_section",
      "section_title": "FIRMOGRAPHICS",
      "signals": [
        {
          "key": "locations_count",
          "name": "Locations Count",
          "type": "Numeric",
          "sample_or_possible_value": "1"
        },
        {
          "key": "location_type",
          "name": "Business Type",
          "type": "String",
          "sample_or_possible_value": "Commercial"
        },
        {
          "key": "annual_revenue",
          "name": "Annual Revenue",
          "type": "String",
          "sample_or_possible_value": "$10M - $25M"
        },
        {
          "key": "monthly_technology_spend",
          "name": "Tech Spend/month",
          "type": "String",
          "sample_or_possible_value": "$1K - $5K"
        },
        {
          "key": "business_age",
          "name": "Business Age",
          "type": "String",
          "sample_or_possible_value": ">10Y"
        },
        {
          "key": "model",
          "name": "Business Model",
          "type": "String",
          "sample_or_possible_value": "B2C"
        },
        {
          "key": "revenue_seasonality",
          "name": "Revenue Seasonality",
          "type": "String",
          "sample_or_possible_value": "Spring, Memorial Day, Labour Day, Fall, Halloween, Veterans Day"
        },
        {
          "key": "remote_only_business",
          "name": "Remote Only Business",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        }
      ]
    },
    {
      "section_key": "technologies_section",
      "section_title": "Technology",
      "signals": {
        "key": "technologies",
        "name": "Technologies",
        "type": "Array",
        "sub_signals": [
          {
            "key": "group_name",
            "name": "Group Name",
            "type": "String",
            "sample_or_possible_value": "Analytics and Tracking"
          },
          {
            "key": "list",
            "name": "List",
            "type": "Array",
            "sample_or_possible_value": [
              "Google Analytics"
            ]
          }
        ]
      }
    },
    {
      "section_key": "local_business_presence",
      "section_title": "LOCAL BUSINESS PRESENCE",
      "signals": [
        {
          "key": "local_directory_nextdoor_presence",
          "name": "Nextdoor",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_nextdoor_business_name",
          "name": "Nextdoor_Business name",
          "type": "String",
          "sample_or_possible_value": "Aire Texas Residential Services Inc"
        },
        {
          "key": "local_directory_nextdoor_description",
          "name": "Nextdoor_Description",
          "type": "String",
          "sample_or_possible_value": "Aire Texas is a family owned HVAC company serving Collin, Dallas, Denton and part of Rockwall counties. We bring a high level attention to every job, regardless of the size whether it be a repair, installation or maintenance.  Aire Texas also offers Duct Cleanings, Attic Insulation and Home Automation. "
        },
        {
          "key": "local_directory_nextdoor_recommendation",
          "name": "Nextdoor_Recommendation",
          "type": "Numeric",
          "sample_or_possible_value": 22
        },
        {
          "key": "local_directory_nextdoor_local_deals",
          "name": "Nextdoor_Local Deals",
          "type": "String",
          "sample_or_possible_value": "50% off Chatbot or Virtual Agent Implementation & Enhancement of Your Website"
        },
        {
          "key": "local_directory_nextdoor_lic_number",
          "name": "Nextdoor_License",
          "type": "String",
          "sample_or_possible_value": "Lic. TACLB15156E"
        },
        {
          "key": "local_directory_nextdoor_neighborhood_favorite",
          "name": "Nextdoor_Neighborhood Favorite",
          "type": "Boolean",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "local_directory_googleplaces_presence",
          "name": "Google My Business - Listed",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_googleplaces_is_claimed",
          "name": "Google My Business - Claimed",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_googleplaces_reviews",
          "name": "Google Reviews",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_googleplaces_reviews_count",
          "name": "Google Reviews Count",
          "type": "String",
          "sample_or_possible_value": 295
        },
        {
          "key": "local_directory_googleplaces_ratings",
          "name": "Google Rating",
          "type": "String",
          "sample_or_possible_value": 4.9
        },
        {
          "key": "local_directory_googleplaces_page_url",
          "name": "Google My Business Listing URL",
          "type": "String",
          "sample_or_possible_value": "maps.google.com"
        },
        {
          "key": "local_directory_yelp_presence",
          "name": "Yelp - Listed",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_yelp_is_claimed",
          "name": "Yelp - Claimed",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_yelp_reviews",
          "name": "Yelp Reviews",
          "type": "String",
          "sample_or_possible_value": 125
        },
        {
          "key": "local_directory_yelp_ratings",
          "name": "Yelp Rating",
          "type": "String",
          "sample_or_possible_value": "4.5"
        },
        {
          "key": "local_directory_yelp_page_url",
          "name": "Yelp Listing URL",
          "type": "String",
          "sample_or_possible_value": "https://www.yelp.com/biz/jacks-tile-and-carpet-newport-news"
        },
        {
          "key": "local_directory_yellow_pages_presence",
          "name": "Yellow Pages - Listed",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_yellow_pages_claimed",
          "name": "Yellow Pages - Claimed",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        },
        {
          "key": "local_directory_yellow_pages_page_url",
          "name": "Yellow Pages Listing URL",
          "type": "String",
          "sample_or_possible_value": "https://www.yellowpages.com/somerville-nj/mip/intercept-silver-jewelry-care-co-469957527"
        }
      ]
    },
    {
      "section_key": "hr_hiring",
      "section_title": "HR & Hiring",
      "signals": [
        {
          "key": "employees_size",
          "name": "Employee Size",
          "type": "String",
          "sample_or_possible_value": "11-50"
        },
        {
          "key": "indeed_review_count",
          "name": "Review(s)",
          "type": "String",
          "sample_or_possible_value": "10"
        },
        {
          "key": "indeed_overall_rating",
          "name": "Ratings",
          "type": "String",
          "sample_or_possible_value": "4.3"
        },
        {
          "key": "jobs_count",
          "name": "Open Positions",
          "type": "Numeric",
          "sample_or_possible_value": 8
        },
        {
          "key": "hiring",
          "name": "Hiring",
          "type": "String",
          "sample_or_possible_value": "Yes/No/-"
        }
      ]
    },
    {
      "section_key": "digital_security_and_privacy",
      "section_title": "Digital Security",
      "signals": [
        {
          "key": "security_composite_score",
          "name": "Security Score",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "Numeric",
              "sample_or_possible_value": 20
            }
          ]
        },
        {
          "key": "is_malware_presence",
          "name": "Malware",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "sensitive_information_security",
          "name": "Sensitive Information Security",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "is_server_secured",
          "name": "Secure Website",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "privacy_policy",
          "name": "Privacy Policy",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        }
      ]
    },
    {
      "section_key": "infrastructure_robustness_and_security",
      "section_title": "Infrastructure",
      "signals": [
        {
          "key": "page_cache_enabled",
          "name": "Caching Enabled",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "page_file_compression",
          "name": "File Compression",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "page_server_response_time",
          "name": "Server Response Time",
          "type": "Numeric",
          "sample_or_possible_value": 187
        },
        {
          "key": "website_cms",
          "name": "Website CMS",
          "type": "String",
          "sample_or_possible_value": "Squarespace"
        }
      ]
    },
    {
      "section_key": "communication",
      "section_title": "Communication",
      "signals": [
        {
          "key": "data_usage",
          "name": "Data Usage",
          "type": "String",
          "sample_or_possible_value": "Medium"
        },
        {
          "key": "page_phone_number_toll_free",
          "name": "Toll-Free Number",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "video_calling_platform",
          "name": "Video Calling Platform",
          "type": "String",
          "sample_or_possible_value": "Not Detected"
        },
        {
          "key": "email_platform",
          "name": "Email Platform",
          "type": "String",
          "sample_or_possible_value": "Outlook"
        },
        {
          "key": "help_desk",
          "name": "Help Desk",
          "type": "String",
          "sample_or_possible_value": "Not Detected"
        },
        {
          "key": "contact_center",
          "name": "Contact Center",
          "type": "String",
          "sample_or_possible_value": "Not Detected"
        }
      ]
    },
    {
      "section_key": "online_presence",
      "section_title": "Online Presence",
      "signals": [
        {
          "key": "page_bb_mobile_compatible",
          "name": "Mobile Friendly",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "content_maturity_score",
          "name": "SEO Score",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "Numeric",
              "sample_or_possible_value": 43
            }
          ]
        },
        {
          "key": "page_trustflow",
          "name": "Trust Flow",
          "type": "Numeric",
          "sample_or_possible_value": 18
        },
        {
          "key": "google_my_business_presence",
          "name": "Local Presence",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "website",
          "name": "Domain Name",
          "type": "String",
          "sample_or_possible_value": "fultanos.com"
        },
        {
          "key": "domain_registrar",
          "name": "Registrar Name",
          "type": "String",
          "sample_or_possible_value": "GoDaddy.com, LLC"
        },
        {
          "key": "domain_registration_date",
          "name": "Created Date",
          "type": "String",
          "sample_or_possible_value": "39347"
        },
        {
          "key": "domain_age",
          "name": "Domain Age",
          "type": "String",
          "sample_or_possible_value": "14Y, 5M"
        },
        {
          "key": "website_page_count",
          "name": "Website Page Count",
          "type": "Numeric",
          "sample_or_possible_value": 14
        },
        {
          "key": "page_lang",
          "name": "Primary Languages",
          "type": "Array",
          "sample_or_possible_value": [
            "en"
          ]
        },
        {
          "key": "url_type",
          "name": "URL Type",
          "type": "String",
          "sample_or_possible_value": "Business Domain"
        },
        {
          "key": "domain_valid",
          "name": "URL Status",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "additional_url",
          "name": "Additional URL",
          "type": "String",
          "sample_or_possible_value": "buzzboard.com"
        }
      ]
    },
    {
      "section_key": "social_media_channels",
      "section_title": "Social",
      "signals": [
        {
          "key": "social_score",
          "name": "Social Score",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "Numeric",
              "sample_or_possible_value": 76
            }
          ]
        },
        {
          "key": "facebook_page_presence",
          "name": "Facebook Business Page",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "facebook_likes",
              "name": "Facebook Likes",
              "type": "String",
              "sample_or_possible_value": "120"
            },
            {
              "key": "facebook_checkins",
              "name": "Facebook Checkins",
              "type": "String",
              "sample_or_possible_value": "15"
            },
            {
              "key": "fp_page_url",
              "name": "Facebook Page Link",
              "type": "String",
              "sample_or_possible_value": "http://www.facebook.com/pg/773017452795890"
            },
            {
              "key": "facebook_overall_star_rating",
              "name": "Facebook Rating",
              "type": "Numeric",
              "sample_or_possible_value": 4
            }
          ]
        },
        {
          "key": "twitter_page_presence",
          "name": "Twitter Business Account",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "twitter_followers",
              "name": "Twitter Followers",
              "type": "String",
              "sample_or_possible_value": "15"
            },
            {
              "key": "twitter_tweets",
              "name": "Twitter Tweets",
              "type": "String",
              "sample_or_possible_value": "15"
            },
            {
              "key": "twitter_page_url",
              "name": "Twitter Page Link",
              "type": "String",
              "sample_or_possible_value": "http://twitter.com/abc"
            }
          ]
        },
        {
          "key": "youtube_page_presence",
          "name": "YouTube Channel",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "youtube_page_url",
              "name": "Youtube Page Link",
              "type": "String",
              "sample_or_possible_value": "youtube.com/abc"
            },
            {
              "key": "youtube_page_subscriber_count",
              "name": "YouTube Followers",
              "type": "Numeric",
              "sample_or_possible_value": 500
            }
          ]
        },
        {
          "key": "linkedin_page_presence",
          "name": "LinkedIn Company Page",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "linkedin_page_url",
              "name": "LinkedIn Page Link",
              "type": "String",
              "sample_or_possible_value": "http://linkedin.com/abc"
            }
          ]
        },
        {
          "key": "pinterest_page_presence",
          "name": "Pinterest Page Presence",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "pinterest_follower_count",
              "name": "Pinterest Follower Count",
              "type": "String",
              "sample_or_possible_value": "120"
            },
            {
              "key": "pinterest_following_count",
              "name": "Pinterest Following Count",
              "type": "String",
              "sample_or_possible_value": "120"
            },
            {
              "key": "pinterest_pin_count",
              "name": "Pinterest Pin Count",
              "type": "String",
              "sample_or_possible_value": "20"
            },
            {
              "key": "pinterest_board_count",
              "name": "Pinterest Board Count",
              "type": "String",
              "sample_or_possible_value": "20"
            },
            {
              "key": "pinterest_domain_verified",
              "name": "Pinterest Domain Verified",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "pinterest_is_verified_merchant",
              "name": "Pinterest Verified Merchant",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "instagram_page_presence",
          "name": "Instagram Business Account",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "insta_no_of_posts",
              "name": "Insta No Of Posts",
              "type": "String",
              "sample_or_possible_value": "2365"
            },
            {
              "key": "insta_follower_count",
              "name": "Insta Follower Count",
              "type": "String",
              "sample_or_possible_value": "15700000"
            },
            {
              "key": "insta_following_count",
              "name": "Insta Following Count",
              "type": "String",
              "sample_or_possible_value": "102"
            },
            {
              "key": "insta_page_url",
              "name": "Instagram Business Account Link",
              "type": "String",
              "sample_or_possible_value": "instagram.com/abc"
            },
            {
              "key": "insta_last_post_date",
              "name": "Instagram Last Post Date",
              "type": "String",
              "sample_or_possible_value": "2020-11-03T00:00:00.000Z"
            }
          ]
        }
      ]
    },
    {
      "section_key": "market_place",
      "section_title": "Marketplace",
      "signals": [
        {
          "key": "home_advisor",
          "name": "HomeAdvisor",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "HomeAdvisor - Listed",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_home_advisor_business_name",
              "name": "HomeAdvisor - Business Name",
              "type": "String",
              "sample_or_possible_value": "Henco Plumbing Services, LLC"
            },
            {
              "key": "local_directory_home_advisor_business_since",
              "name": "HomeAdvisor - Business Since",
              "type": "String",
              "sample_or_possible_value": "2012"
            },
            {
              "key": "local_directory_home_advisor_is_claimed",
              "name": "HomeAdvisor - Is Claimed",
              "type": "String",
              "sample_or_possible_value": "Yes"
            },
            {
              "key": "local_directory_home_advisor_services_offered",
              "name": "HomeAdvisor - Services Offered",
              "type": "Array",
              "sample_or_possible_value": [
                "Clear Sewer Main",
                "Clear Drain Clog or Blockage"
              ]
            },
            {
              "key": "local_directory_home_advisor_services_area",
              "name": "HomeAdvisor - Services Area",
              "type": "Array",
              "sample_or_possible_value": [
                "Vancouver",
                "La Center",
                "Camas",
                "Battle Ground",
                "Washougal"
              ]
            },
            {
              "key": "local_directory_home_advisor_product_brands",
              "name": "HomeAdvisor - Product Brands",
              "type": "Array",
              "sample_or_possible_value": [
                "Rheem",
                "Bradford White",
                "American Standard",
                "Moen",
                "Viega",
                "Delta"
              ]
            },
            {
              "key": "local_directory_home_advisor_ratings",
              "name": "HomeAdvisor - Ratings",
              "type": "String",
              "sample_or_possible_value": "4.7"
            },
            {
              "key": "local_directory_home_advisor_reviews_list",
              "name": "HomeAdvisor - Reviews",
              "type": "Array",
              "sub_signals": [
                {
                  "key": "address",
                  "name": "Address",
                  "type": "String",
                  "sample_or_possible_value": "Vancouver, WA"
                },
                {
                  "key": "review",
                  "name": "Review",
                  "type": "String",
                  "sample_or_possible_value": "On time, courteous and professional."
                },
                {
                  "key": "author",
                  "name": "Author",
                  "type": "String",
                  "sample_or_possible_value": "Ray M."
                },
                {
                  "key": "rating",
                  "name": "Rating",
                  "type": "String",
                  "sample_or_possible_value": "5.0"
                },
                {
                  "key": "title",
                  "name": "Title",
                  "type": "String",
                  "sample_or_possible_value": "Clean Out a Sewer"
                },
                {
                  "key": "datepublished",
                  "name": "Date Published",
                  "type": "String",
                  "sample_or_possible_value": "5/12/2021"
                }
              ]
            },
            {
              "key": "local_directory_home_advisor_reviews",
              "name": "HomeAdvisor - Total Reviews Count",
              "type": "Numeric",
              "sample_or_possible_value": 120
            },
            {
              "key": "local_directory_home_advisor_deals_offered",
              "name": "HomeAdvisor - Deals Offered",
              "type": "Array",
              "sub_signals": [
                {
                  "key": "deal_title",
                  "name": "Deal Title",
                  "type": "String",
                  "sample_or_possible_value": "Save 10%"
                },
                {
                  "key": "deal_text",
                  "name": "Deal Text",
                  "type": "String",
                  "sample_or_possible_value": "Save 10% on Service Call/Labor"
                },
                {
                  "key": "deal_link",
                  "name": "Deal Link",
                  "type": "String",
                  "sample_or_possible_value": "/rfs/serviceprofessional/modularprofile/profileDirectoryDeal.jsp?dealID=209340&XM_SP_ID=60663632"
                }
              ]
            },
            {
              "key": "local_directory_home_advisor_page_url",
              "name": "HomeAdvisor - HomepageURL",
              "type": "String",
              "sample_or_possible_value": "https://www.homeadvisor.com/rated.HencoPlumbingServices.49943093.html"
            }
          ]
        },
        {
          "key": "thumbtack",
          "name": "Thumbtack",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Thumbtack - Listed",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_thumbtack_business_name",
              "name": "Thumbtack - Business Name",
              "type": "String",
              "sample_or_possible_value": "Henco Plumbing Services, LLC"
            },
            {
              "key": "local_directory_thumbtack_description",
              "name": "Thumbtack - Description",
              "type": "String",
              "sample_or_possible_value": "Introduction: Since its founding more than 15 years ago, Hach & Rose has distinguished itself as one of New Yorks preeminent law firms. Founded on the simple principles of always placing the clients needs first and aggressively pursuing the highest recovery possible, the firm sets itself apart."
            },
            {
              "key": "local_directory_thumbtack_categories",
              "name": "Thumbtack - Category",
              "type": "String",
              "sample_or_possible_value": "personal injury lawyers"
            },
            {
              "key": "local_directory_thumbtack_years_in_business",
              "name": "Thumbtack - Years in Business",
              "type": "Numeric",
              "sample_or_possible_value": 21
            },
            {
              "key": "local_directory_thumbtack_estimated_cost",
              "name": "Thumbtack - Estimated Cost",
              "type": "String",
              "sample_or_possible_value": "$100"
            },
            {
              "key": "local_directory_thumbtack_ratings_double",
              "name": "Thumbtack - Rating",
              "type": "Numeric",
              "sample_or_possible_value": 5
            },
            {
              "key": "local_directory_thumbtack_reviews_count_int",
              "name": "Thumbtack - Review count",
              "type": "Numeric",
              "sample_or_possible_value": 10
            },
            {
              "key": "local_directory_thumbtack_no_of_times_hired",
              "name": "Thumbtack - No of Times Hired",
              "type": "Numeric",
              "sample_or_possible_value": 4
            },
            {
              "key": "local_directory_thumbtack_offeres_remote",
              "name": "Thumbtack - Remote Service",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_thumbtack_payment_method",
              "name": "Thumbtack - Payment Options",
              "type": "String",
              "sample_or_possible_value": "Cash, Check, Credit card"
            },
            {
              "key": "local_directory_thumbtack_discounts_available",
              "name": "Thumbtack - Discounts",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_thumbtack_page_url",
              "name": "Thumbtack - Business - URL",
              "type": "String",
              "sample_or_possible_value": "https://www.thumbtack.com/va/charlottesville/carpet-cleaning/grout-carpet-wizards/service/338920902676144311"
            },
            {
              "key": "local_directory_thumbtack_rating_summary",
              "name": "Thumbtack - Rating Summary",
              "type": "Object",
              "sub_signals": [
                {
                  "key": "1",
                  "name": "1",
                  "type": "String",
                  "sample_or_possible_value": "0%"
                },
                {
                  "key": "2",
                  "name": "2",
                  "type": "String",
                  "sample_or_possible_value": "0%"
                },
                {
                  "key": "3",
                  "name": "3",
                  "type": "String",
                  "sample_or_possible_value": "0%"
                },
                {
                  "key": "4",
                  "name": "4",
                  "type": "String",
                  "sample_or_possible_value": "0%"
                },
                {
                  "key": "5",
                  "name": "5",
                  "type": "String",
                  "sample_or_possible_value": "100%"
                }
              ]
            },
            {
              "key": "local_directory_thumbtack_reviews_list",
              "name": "Thumbtack - Reviews",
              "type": "Array",
              "sub_signals": [
                {
                  "key": "review_date",
                  "name": "Review Date",
                  "type": "String",
                  "sample_or_possible_value": "Oct 29, 2019"
                },
                {
                  "key": "review",
                  "name": "Review",
                  "type": "String",
                  "sample_or_possible_value": "Even though they were unable to be on time (they texted me with their changes in itinerary), I would use this company again & again.  Great communication, fantastic, efficient carpet cleaning completed.  Besides all that, they were quite personable & provided explanations of what they were doing & why.  Thank you!"
                },
                {
                  "key": "rating",
                  "name": "Rating",
                  "type": "Numeric",
                  "sample_or_possible_value": 5
                },
                {
                  "key": "username",
                  "name": "Username",
                  "type": "String",
                  "sample_or_possible_value": "Alicia B."
                }
              ]
            },
            {
              "key": "local_directory_thumbtack_verified",
              "name": "Thumbtack - Verified",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "ubereats",
          "name": "Uber Eats",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Uber Eats - Listed",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_ubereats_page_url",
              "name": "Uber Eats - Business URL",
              "type": "String",
              "sample_or_possible_value": "https://www.ubereats.com/store/charleys-philly-steaks-2424-highway-6-and-50%230142/XZQ6NUdJTrOPElIlZzvEcQ"
            },
            {
              "key": "local_directory_ubereats_business_name",
              "name": "Uber Eats - Business Name",
              "type": "String",
              "sample_or_possible_value": "Charleys Philly Steaks"
            },
            {
              "key": "local_directory_ubereats_description",
              "name": "Uber Eats - Description",
              "type": "String",
              "sample_or_possible_value": "If youre wondering whats the best thing on the menu, it might be helpful to know that of the 30 things on the menu, the Philly Cheesesteak is one of the most popular and the Chicken Buffalo and the Chicken Philly are two of the items most commonly ordered together"
            },
            {
              "key": "local_directory_ubereats_cuisines",
              "name": "Uber Eats - Cuisines",
              "type": "Array",
              "sample_or_possible_value": [
                "American",
                "Burgers"
              ]
            },
            {
              "key": "local_directory_ubereats_reviews_count_int",
              "name": "Uber Eats - Review count",
              "type": "Numeric",
              "sample_or_possible_value": 13
            },
            {
              "key": "local_directory_ubereats_ratings_double",
              "name": "Uber Eats - Rating",
              "type": "Double",
              "sample_or_possible_value": 3.5
            },
            {
              "key": "local_directory_ubereats_offer",
              "name": "Uber Eats - Offer",
              "type": "String",
              "sample_or_possible_value": "10%"
            }
          ]
        },
        {
          "key": "opentable",
          "name": "OpenTable",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Opentable",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_opentable_page_url",
              "name": "Opentable - Business URL",
              "type": "String",
              "sample_or_possible_value": "https://www.opentable.com/r/charleys-philly-steaks-grand-junction"
            },
            {
              "key": "local_directory_opentable_business_name",
              "name": "Opentable - Business Name",
              "type": "String",
              "sample_or_possible_value": "Charleys Philly Steaks"
            },
            {
              "key": "local_directory_opentable_description",
              "name": "Opentable - Description",
              "type": "String",
              "sample_or_possible_value": "Chart House is a fine dining restaurant serving seafood & steak and famous for their spectacular views. For more than 50 years, Chart House has redefined the ideal dining experience. With 27 waterfront and showcase locations ranging from the historic to the unforgettable, Chart House restaurants specialize in dazzling views, unique cuisine and exceptional service."
            },
            {
              "key": "local_directory_opentable_dining_style",
              "name": "Opentable - Dining Style",
              "type": "String",
              "sample_or_possible_value": "Casual Elegant"
            },
            {
              "key": "local_directory_opentable_cusine_name",
              "name": "Opentable - Cuisines",
              "type": "String",
              "sample_or_possible_value": "Seafood"
            },
            {
              "key": "local_directory_opentable_is_claimed",
              "name": "Opentable - Claimed",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_opentable_ratings_double",
              "name": "Opentable - Rating",
              "type": "Double",
              "sample_or_possible_value": 4.2
            },
            {
              "key": "local_directory_opentable_rating_summary",
              "name": "Opentable - Rating Summary",
              "type": "Object",
              "sub_signals": [
                {
                  "key": "ambience",
                  "name": "Ambience",
                  "type": "String",
                  "sample_or_possible_value": "4.3"
                },
                {
                  "key": "service",
                  "name": "Service",
                  "type": "String",
                  "sample_or_possible_value": "4.2"
                },
                {
                  "key": "value",
                  "name": "Value",
                  "type": "String",
                  "sample_or_possible_value": "4.4"
                },
                {
                  "key": "food",
                  "name": "Food",
                  "type": "String",
                  "sample_or_possible_value": "4.2"
                }
              ]
            },
            {
              "key": "local_directory_opentable_reviews_count_int",
              "name": "Opentable - Count",
              "type": "Numeric",
              "sample_or_possible_value": 3246
            },
            {
              "key": "local_directory_opentable_reviews_list",
              "name": "Opentable - Reviews List",
              "type": "Array",
              "sub_signals": [
                {
                  "key": "username",
                  "name": "Username",
                  "type": "String",
                  "sample_or_possible_value": "CRPJJP"
                },
                {
                  "key": "review",
                  "name": "Review",
                  "type": "String",
                  "sample_or_possible_value": "5"
                },
                {
                  "key": "rating",
                  "name": "Rating",
                  "type": "String",
                  "sample_or_possible_value": "5"
                },
                {
                  "key": "review_date",
                  "name": "Review Date",
                  "type": "String",
                  "sample_or_possible_value": "Dined 4 days ago"
                },
                {
                  "key": "description",
                  "name": "Description",
                  "type": "String",
                  "sample_or_possible_value": "As much as I looked forward to experiencing this place, it was a strong disappointment.  We didnt even see our waitress other than when taking our initial order.  After waiting for over 30 mins for my soup and my friends salad, my soup was brought out cold and my friends salad was wilted and flavorless. It was terrible.  Im not one to write such a review, but would hate for anyone to spend the amount of money we spent for such service and quality."
                },
                {
                  "key": "location",
                  "name": "Location",
                  "type": "String",
                  "sample_or_possible_value": "Louisville"
                },
                {
                  "key": "overall",
                  "name": "Overall",
                  "type": "String",
                  "sample_or_possible_value": "1"
                },
                {
                  "key": "food",
                  "name": "Food",
                  "type": "String",
                  "sample_or_possible_value": "1"
                },
                {
                  "key": "service",
                  "name": "Service",
                  "type": "String",
                  "sample_or_possible_value": "1"
                },
                {
                  "key": "ambience",
                  "name": "Ambience",
                  "type": "String",
                  "sample_or_possible_value": "5"
                }
              ]
            },
            {
              "key": "local_directory_opentable_price_band",
              "name": "Opentable - Price Range",
              "type": "String",
              "sample_or_possible_value": "$30 and under"
            },
            {
              "key": "local_directory_opentable_payment_options",
              "name": "Opentable - Payment Options",
              "type": "Array",
              "sample_or_possible_value": [
                "AMEX",
                "Diners Club",
                "Discover",
                "MasterCard",
                "Visa"
              ]
            },
            {
              "key": "local_directory_opentable_parking_details",
              "name": "Opentable - Parking Details",
              "type": "String",
              "sample_or_possible_value": "Private Lot"
            },
            {
              "key": "local_directory_opentable_has_delivery_partner",
              "name": "Opentable - Delivery Partner",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_opentable_offer_available",
              "name": "Opentable - Offer",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "houzz",
          "name": "Houzz",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Houzz",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "local_directory_houzz_data_business_name",
              "name": "Houzz - Business Name",
              "type": "String",
              "sample_or_possible_value": "Charleys Philly Steaks"
            },
            {
              "key": "local_directory_houzz_data_description",
              "name": "Houzz - Description",
              "type": "String",
              "sample_or_possible_value": "Your Broker of Choice\nElizabeth\u2019s in-depth local knowledge of neighborhood values, confidentiality when representing clients, diplomacy when working with her colleagues, and more than 16 years of hands-on experience with an array of real estate transactions spanning all price ranges, makes her your perfect Realtor of choice \u2014 and the Broker to trust with one of the biggest investments of your life: your property."
            },
            {
              "key": "local_directory_houzz_data_services_provided",
              "name": "Houzz - Services Provided",
              "type": "Array",
              "sample_or_possible_value": [
                "Real Estate Agents"
              ]
            },
            {
              "key": "local_directory_houzz_data_area_served",
              "name": "Houzz - Area Served",
              "type": "Array",
              "sample_or_possible_value": [
                "Santa Barbara"
              ]
            },
            {
              "key": "local_directory_houzz_data_ratings_double",
              "name": "Houzz - Ratings",
              "type": "Numeric",
              "sample_or_possible_value": 5
            },
            {
              "key": "local_directory_houzz_data_reviews_list",
              "name": "Houzz - Reviews List",
              "type": "Array",
              "sub_signals": [
                {
                  "key": "date",
                  "name": "Date",
                  "type": "String",
                  "sample_or_possible_value": "April 13, 2020"
                },
                {
                  "key": "user_name",
                  "name": "Username",
                  "type": "String",
                  "sample_or_possible_value": "Chloe Kirk"
                },
                {
                  "key": "review",
                  "name": "Review",
                  "type": "String",
                  "sample_or_possible_value": "We worked with Elizabeth to complete the purchase of our first home in December 2019. She made the entire home buying process a breeze. She knows the industry inside and out and her experience with buying and selling in our particular neighborhood really showed. As first time home buyers, it was relieving to have someone who could answer any question in a heartbeat and provide sound advice through the process. We loved working with her and would recommend her highly!"
                },
                {
                  "key": "rating",
                  "name": "Rating",
                  "type": "Numeric",
                  "sample_or_possible_value": 5
                }
              ]
            },
            {
              "key": "local_directory_houzz_data_categories",
              "name": "Houzz - Category",
              "type": "String",
              "sample_or_possible_value": "Real Estate Agents"
            },
            {
              "key": "local_directory_houzz_data_credentials_list",
              "name": "Houzz - Credentials List",
              "type": "Array",
              "sample_or_possible_value": [
                "2 Houzz Badges"
              ]
            },
            {
              "key": "local_directory_houzz_data_awards",
              "name": "Houzz - Awards",
              "type": "Array",
              "sample_or_possible_value": [
                "Elizabeth has obtained the Broker, EcoBroker, Green Designated, GRI-Graduate Realtor Institute designations. As Santa Barbara\u2019s first EcoBroker, Elizabeth is part of a nationally accredited designation committed to the environment and her clients."
              ]
            },
            {
              "key": "local_directory_houzz_data_reviews_count_int",
              "name": "Houzz - Reviews Count",
              "type": "Numeric",
              "sample_or_possible_value": 18
            },
            {
              "key": "local_directory_houzz_data_followers",
              "name": "Houzz - Followers",
              "type": "Numeric",
              "sample_or_possible_value": 325
            },
            {
              "key": "local_directory_houzz_data_address",
              "name": "Houzz - Location",
              "type": "String",
              "sample_or_possible_value": "1436 State StreetSanta Barbara,CA,93103"
            }
          ]
        },
        {
          "key": "android_app",
          "name": "Android App",
          "type": "Object",
          "sub_signals": [
            {
              "key": "mobile_app_android_presence",
              "name": "Android App - Listed",
              "type": "String",
              "sample_or_possible_value": "Yes/No/-"
            },
            {
              "key": "mobile_app_android_url",
              "name": "Android App- Pagelink",
              "type": "String",
              "sample_or_possible_value": "https://play.google.com/store/apps/details?id=com.rn_ercare24_app"
            }
          ]
        },
        {
          "key": "ios_app",
          "name": "iOS App",
          "type": "Object",
          "sub_signals": [
            {
              "key": "mobile_app_ios_presence",
              "name": "iOS App- Listed",
              "type": "String",
              "sample_or_possible_value": "Yes/No/-"
            },
            {
              "key": "mobile_app_ios_url",
              "name": "iOS App - Pagelink",
              "type": "String",
              "sample_or_possible_value": "https://apps.apple.com/us/app/signaturecare/id1495575404"
            }
          ]
        }
      ]
    },
    {
      "section_key": "advertising",
      "section_title": "Advertising",
      "signals": [
        {
          "key": "advertising_composite_score",
          "name": "Advertising Score",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Advertising Score",
              "type": "Numeric",
              "sample_or_possible_value": 56
            }
          ]
        },
        {
          "key": "page_google_adwords",
          "name": "Google Ads Presence",
          "type": "Object",
          "sub_signals": [
            {
              "key": "value",
              "name": "Value",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "google_adwords_cost",
              "name": "Google Adwords Cost",
              "type": "String",
              "sample_or_possible_value": "$1K - $5K"
            },
            {
              "key": "google_traffic",
              "name": "Google Ads Traffic",
              "type": "String",
              "sample_or_possible_value": "265.22"
            }
          ]
        },
        {
          "key": "display_ads_presence",
          "name": "Display Ads",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "facebook_ads_presence",
          "name": "Facebook Ads",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "local_directory_thumbtack_is_advertisers",
          "name": "Thumbtack Ads Presence",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "local_directory_home_advisor_is_advertisers",
          "name": "HomeAdvisor Ads Presence",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "local_directory_yelp_is_yelp_advertiser",
          "name": "Yelp Ads",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        },
        {
          "key": "running_any_ads",
          "name": "Running Any Ads",
          "type": "String",
          "sample_or_possible_value": "Yes/No"
        }
      ]
    },
    {
      "section_key": "e_commerce_signals",
      "section_title": "E-Commerce",
      "signals": [
        {
          "key": "e_commerce",
          "name": "E-Commerce",
          "type": "Object",
          "sub_signals": [
            {
              "key": "ecom_platform_created_at",
              "name": "Ecom Created",
              "type": "String",
              "sample_or_possible_value": "-"
            },
            {
              "key": "delivery_return_policy",
              "name": "Del-Return Policy",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "ecom_enabled",
              "name": "Ecom Enabled",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "e_commerce_ready",
              "name": "Ecom Ready",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "inventory_tracking",
          "name": "Inventory Tracking",
          "type": "Object",
          "sub_signals": [
            {
              "key": "reservation_and_booking",
              "name": "Reservation",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "online_ordering",
              "name": "Online Ordering",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "customer_feedback",
          "name": "Customer Feedback",
          "type": "Object",
          "sub_signals": [
            {
              "key": "reviews",
              "name": "Reviews",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "product_insight",
          "name": "Product Insight",
          "type": "Object",
          "sub_signals": [
            {
              "key": "product_count",
              "name": "Product Count",
              "type": "String",
              "sample_or_possible_value": "15"
            },
            {
              "key": "avg_product_price",
              "name": "Avg Product Price",
              "type": "String",
              "sample_or_possible_value": "-"
            },
            {
              "key": "featured_products",
              "name": "Featured Products",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "promotions",
              "name": "Promotions",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "coupons",
              "name": "Coupons",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "commerce_page",
          "name": "Commerce Page",
          "type": "Object",
          "sub_signals": [
            {
              "key": "buying_page",
              "name": "Buying Page",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "selling_page",
              "name": "Selling Page",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "rentals_page",
              "name": "Rentals Page",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "interactive_widgets",
          "name": "Interactive Widgets",
          "type": "Object",
          "sub_signals": [
            {
              "key": "menu",
              "name": "Menu",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "scheduler",
              "name": "Scheduler",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "mortgage_calculator",
              "name": "Premium Calculator",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "inventory_search_form",
              "name": "Inventory Tracking",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "finance",
              "name": "Finance",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "wish_list",
              "name": "WishList",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "order_tracking",
              "name": "Order Tracking",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "get_a_quote",
              "name": "Get A Quote",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "estimates_page",
              "name": "Estimate Page",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "market_place",
          "name": "Marketplace",
          "type": "Object",
          "sub_signals": [
            {
              "key": "facebook_shop_presence",
              "name": "FB Shop",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            },
            {
              "key": "amazon_page_presence",
              "name": "Amazon Seller",
              "type": "String",
              "sample_or_possible_value": "Yes/No"
            }
          ]
        },
        {
          "key": "technology_breakdown",
          "name": "Technology Breakdown",
          "type": "Object",
          "sub_signals": [
            {
              "key": "monthly_technology_spend_tb",
              "name": "Tech Spend/month",
              "type": "String",
              "sample_or_possible_value": "$1K - $5K"
            },
            {
              "key": "monthly_app_spend_grade",
              "name": "Monthly App Spend",
              "type": "String",
              "sample_or_possible_value": "-"
            }
          ]
        },
        {
          "key": "e_commerce_technology",
          "name": "E-Commerce Technology",
          "type": "Object",
          "sub_signals": [
            {
              "key": "ecom_installed_apps",
              "name": "Installed Apps",
              "type": "String",
              "sample_or_possible_value": "-"
            },
            {
              "key": "ecom_plan",
              "name": "Plan",
              "type": "String",
              "sample_or_possible_value": "-"
            },
            {
              "key": "ecom_last_plan_change_at",
              "name": "Last Plan Change at",
              "type": "String",
              "sample_or_possible_value": "-"
            },
            {
              "key": "e_commerce_platforms",
              "name": "Ecommerce Platform",
              "type": "String",
              "sample_or_possible_value": "Not Detected"
            },
            {
              "key": "ecom_last_platform_tech_id",
              "name": "Last platform",
              "type": "String",
              "sample_or_possible_value": "-"
            },
            {
              "key": "e_commerce_tools",
              "name": "E Commerce Tools",
              "type": "String",
              "sample_or_possible_value": "Not Detected"
            },
            {
              "key": "payments",
              "name": "Payments",
              "type": "String",
              "sample_or_possible_value": "Paypal"
            }
          ]
        }
      ]
    },
    {
      "section_key": "assets",
      "section_title": "ASSETS",
      "signals": {
        "key": "pdf_short_url",
        "value": "https://sales.buzzboard.com/demandsurl_4449c900"
      }
    }
  ],
  "meta": [
    {
      "key": "record_id",
      "name": "Record Id",
      "type": "String",
      "sample_or_possible_value": "621f8addded84233220070ba"
    },
    {
      "key": "external_document_id",
      "name": "External Document Id",
      "type": "String",
      "sample_or_possible_value": "02mar220848pm01"
    },
    {
      "key": "ref_job_id",
      "name": "Ref Job Id",
      "type": "String",
      "sample_or_possible_value": "3NfwVK8qGKHiL20MZ2IUQ3RH"
    },
    {
      "key": "status_code",
      "name": "Status Codes",
      "type": "String",
      "sample_or_possible_value": [
        200
      ]
    }
  ]
}

Response Parameters

Key Data type Description
section_key

Number

Section Key for reference

section_title

String

Title of the Section

signals

Array

List of available signals for the section

Jobs

Get the processing status of the records that you have pushed for enrichment

Jobs - Get Details

Retrieves the records processing status.

https://apis.buzzboard.com/v5.0/jobs?job_id={id}

Parameters

Field Type Description
job_id Required

String

The unique identifier of the job (e.g.) ?job_id=EXprhcukZIXvx5yLz11Lk0wf

curl -X GET "https://apis.buzzboard.com/v5.0/jobs?job_id=EXprhcukZIXvx5yLz11Lk0wf" 
-H "Authorization: Bearer $ACCESS_TOKEN"
var request = require('request');

var options = { method: 'GET',
url: 'https://apis.buzzboard.com/v5.0/jobs',
qs: { job_id: 'EXprhcukZIXvx5yLz11Lk0wf' },
'headers: 
   { 'cache-control': 'no-cache',
      authorization: 'Bearer ACCESS_TOKEN',
     'content-type': 'application/json' },
 request(options, function (error, response, body) {
  if (error) throw new Error(error);
}
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/jobs");
$request->setMethod(HTTP_METH_GET);
$request->setQueryData(array(
  "job_id" => "EXprhcukZIXvx5yLz11Lk0wf"
))

$request->setHeaders(array(
  "cache-control" => "no-cache",
  "content-type" => "application/json",
  "authorization" => "Bearer ACCESS_TOKEN"
));
try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/jobs?job_id=EXprhcukZIXvx5yLz11Lk0wf")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)
request["content-type"] = "application/json"
request["authorization"] = "Bearer ACCESS_TOKEN"
request["cache-control"] = "no-cache"
response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/jobs"

querystring = {"job_id":"EXprhcukZIXvx5yLz11Lk0wf"}

headers = {
    "content-type": "application/json",
    "authorization": "Bearer ACCESS_TOKEN",
    "cache-control": "no-cache"
    }

response = requests.request("GET", url, headers=headers, params=querystring)
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

    url := "https://apis.buzzboard.com/v5.0/jobs?job_id=EXprhcukZIXvx5yLz11Lk0wf"

	req, _ := http.NewRequest("GET", url, nil)
	
	req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("content-type", "application/json")
	req.Header.Add("cache-control", "no-cache")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)


}
HttpResponse response = Unirest.get("https://apis.buzzboard.com/v5.0/jobs?job_id=EXprhcukZIXvx5yLz11Lk0wf")
  .header("authorization", "Bearer ACCESS_TOKEN")
  .header("content-type", "application/json")
  .header("cache-control", "no-cache")
  .asString();
{
  "data": {
    "status": "completed",
    "job_id": "EXprhcukZIXvx5yLz11Lk0wf",
    "created_at": "2021-12-14",
    "count": {
      "total": 5,
      "completed": 3,
      "inqueue": 1,
      "failed": 1
    },
    "record_details": [
      {
        "record_id": "61b8a5bec1ad50566496ba6d",
        "external_document_id": "141221API193901",
        "status": "completed"
      },
      {
        "record_id": "61b8a5bec1ad50566496ba6e",
        "external_document_id": "141221API193903",
        "status": "completed"
      },
      {
        "record_id": "61b8a5bec1ad50566496ba6f",
        "external_document_id": "141221API193902",
        "status": "completed"
      },
      {
        "record_id": "-",
        "external_document_id": "141221API193905",
        "status": "failed"
      },
      {
        "record_id": "-",
        "external_document_id": "141221API193904",
        "status": "inqueue"
      }
    ]
  }
}

Response Parameters

Key Data type Description
success

String

Status of the Reference Job Id

job_id

String

The reference ID received from the customer in the request

created_at

String

Created date of the Job

count.total

Number

The total number of records for the reference job id

count.completed

Number

Count of records which are synced back via callback url

count.inqueue

Number

Count of records are in processing

count.failed

Number

Count of enrichment failed records

record_details.record_id

String

BuzzBoard reference record id used for signals and report error apis

record_details.external_document_id

String

Unique identifier that passed by the customer

record_details.status

String

Status of the record

Report data error

You can send back records that you may think are erroneous and we will credit that back to you.

Report data error - Report

https://apis.buzzboard.com/v5.0/error/report

Parameters

Field Type Description
record_id Required

String

The unique identifier of the record ("record_id")

type Required

Array

Name of the type E.g.:[Problem,Data issue]

signals

Array

List of signal keys, typically "key" that is returning from "Record Signals - Signals" API

message

String

Brief description about the reporing data error

curl -X POST "https://apis.buzzboard.com/v5.0/error/report"
-H "authorization: Bearer ACCESS_TOKEN"
-H "Content-Type: application/json"
-d '{ "data": { "record_id": 147, "type": ["Problem","Data issue"], "signals": ["responsive_design","media"], "message": "sample description for error report" } }'
var request = require('request');

var options = { method: 'POST',
  url: 'https://apis.buzzboard.com/v5.0/error/report',
  headers: 
   { 
     'cache-control': 'no-cache',
     'content-type': 'application/json',
     authorization: 'Bearer ACCESS_TOKEN' },
  body: 
   { data: 
      { record_id: 147,
        type: [ 'Problem', 'Data issue' ],
        signals: [ 'responsive_design', 'media' ],
        message: 'sample description for error report' } },
  json: true };

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
$request = new HttpRequest();
$request->setUrl("https://apis.buzzboard.com/v5.0/error/report");
$request->setMethod(HTTP_METH_POST);

$request->setHeaders(array("cache-control" => "no-cache",
  "authorization" => "Bearer ACCESS_TOKEN",
  "content-type" => "application/json"));

$request->setBody("{
  "data": {
    "record_id": 147,
    "type": ["Problem","Data issue"],
    "signals": ["responsive_design","media"],
    "message": "sample description for error report"
  }
}");

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
require "uri"
require "net/http"

url = URI("https://apis.buzzboard.com/v5.0/error/report")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Post.new(url)
request["authorization"] = "Bearer ACCESS_TOKEN"
request["content-type"] = "application/json"
request["cache-control"] = "no-cache"
request.body = "{\r\n  \"data\": {\r\n    \"record_id\": 147,\r\n    \"type\": [\"Problem\",\"Data issue\"],\r\n    \"signals\": [\"responsive_design\",\"media\"],\r\n    \"message\": \"sample description for error report\"\r\n  }\r\n}"

response = http.request(request)
puts response.read_body
import requests

url = "https://apis.buzzboard.com/v5.0/error/report"

payload = "{\r\n  \"data\": {\r\n    \"record_id\": 147,\r\n    \"type\": [\"Problem\",\"Data issue\"],\r\n    \"signals\": [\"responsive_design\",\"media\"],\r\n    \"message\": \"sample description for error report\"\r\n  }\r\n}"
headers = {
    "authorization": "Bearer ACCESS_TOKEN",
    "content-type": "application/json",
    "cache-control": "no-cache"
    }

response = requests.request("POST", url, data=payload, headers=headers)

print(response.text)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://apis.buzzboard.com/v5.0/error/report"

	payload := strings.NewReader("{\r\n  \"data\": {\r\n    \"record_id\": 147,\r\n    \"type\": [\"Problem\",\"Data issue\"],\r\n    \"signals\": [\"responsive_design\",\"media\"],\r\n    \"message\": \"sample description for error report\"\r\n  }\r\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("authorization", "Bearer ACCESS_TOKEN")
	req.Header.Add("content-type", "application/json")
	req.Header.Add("cache-control", "no-cache")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
HttpResponse response = Unirest.post("https://apis.buzzboard.com/v5.0/error/report")
  .header("authorization", "Bearer ACCESS_TOKEN")
  .header("content-type", "application/json")
  .header("cache-control", "no-cache")
  .body("{\r\n  \"data\": {\r\n    \"record_id\": 147,\r\n    \"type\": [\"Problem\",\"Data issue\"],\r\n    \"signals\": [\"responsive_design\",\"media\"],\r\n    \"message\": \"sample description for error report\"\r\n  }\r\n}")
  .asString();
{
  "status": 200,
  "message": "Success"
}

Response Parameters

Key Data type Description
status

Number

Status code of the request

message

String

Response message for the request

Response Codes

Http status codes

Code Message Description
200 OK Everything worked as expected
201 Created Everything worked as expected. Returned instead of 200 if your operation creates a new resource
204 No Content Everything worked as expected. The response includes an empty body
400 Bad Request Returned whenever the request is missing required information or is malformed in another way, e.g. the payload is malformed
401 Unauthorized The API consumer credentials are invalid
403 Forbidden The request has been refused because of insufficient user access privileges
404 Not Found The requested resource could not be found
405 Method Not Allowed The API consumer tried to access an endpoint with an invalid HTTP method, e.g. using PUT on a read-only resource
408 Request Timeout Request Timeout.
429 Too Many Requests The rate limit was exceeded and access is temporarily blocked
500 Internal Server Error Something went wrong on server side
501 Not Implemented Not implemented

Custom status codes

Custom status codes ('status_code') will be available in the data received by "callback_url" and signals API response.

Code Description
1001 Unauthorized Request
1003 Method Not Allowed
1004 Access Forbidden. Invalid API Key
1006 Profile Limit Exhausted
1015 Record does not have a External Document Id
1016 Successfully processed but the received record has invalid field(s)
1017 Required fields are missing for this record
1018 Processing failed, The record has invalid data
1019 Your account has expired
1021 Enrichment Failed, No Data Found
1023 Website was not working during the enrichment process
1024 No website found. Processed using external URL. e.g Google My Business URL, Yelp URL
1026 Received record has missing business details
1027 Few of the enriched business details are different in comparison with the received record
1028 Duplicate Record

We are always open to feedback, drop an email to support@buzzboard.com and let us know what you want to see from the BuzzBoard API.

© 2025 BuzzBoard, Inc