Skip to main content
GET
/
verification
/
businesses
/
{businessID}
/
website-data
Get Website Data
curl --request GET \
  --url https://api.joinworth.com/integration/api/v1/verification/businesses/{businessID}/website-data \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Business website data fetched successfully.",
  "data": {
    "id": "3cc974a1-660c-4d52-b719-240cbcf55110",
    "url": "http://www.southernhomebakery.com",
    "error": null,
    "pages": [
      {
        "url": "https://www.southernhomebakery.com/",
        "category": "home",
        "screenshot_url": null
      },
      {
        "url": "https://www.southernhomebakery.com/pages/privacy-policy",
        "category": "privacy",
        "screenshot_url": null
      },
      {
        "url": "https://www.southernhomebakery.com/pages/about",
        "category": "about",
        "screenshot_url": null
      },
      {
        "url": "https://www.southernhomebakery.com/pages/terms-of-service",
        "category": "terms",
        "screenshot_url": null
      }
    ],
    "title": "Southern Home Bakery - Custom Sugar Cookies from Orlando, Florida",
    "domain": {
      "domain": "southernhomebakery.com",
      "domain_id": "2132417788_DOMAIN_COM-VRSN",
      "registrar": {
        "url": "http://tucowsdomains.com",
        "name": "TUCOWS, INC.",
        "organization": "TUCOWS, INC."
      },
      "creation_date": "2017-06-09T21:32:49.000+00:00",
      "expiration_date": "2025-06-09T21:32:49.000+00:00"
    },
    "object": "website",
    "parked": false,
    "people": null,
    "status": "online",
    "addresses": [],
    "created_at": "2024-11-12T19:56:28.770Z",
    "updated_at": "2024-11-12T19:56:44.272Z",
    "business_id": "a2352eb6-c87e-44ad-8d30-3b8fe57a1c02",
    "description": "Custom, hand decorated sugar cookies and nostalgic Southern desserts to share with friends and family for any occasion and celebration!",
    "phone_numbers": [],
    "email_addresses": null,
    "http_status_code": 200,
    "business_name_match": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

businessID
string
required
Examples:

"5794811f-1b4e-4952-9800-ed58a6c04ee2"

Response

default - application/json
status
string
message
string
data
object
Examples:
{
"id": "3cc974a1-660c-4d52-b719-240cbcf55110",
"url": "http://www.southernhomebakery.com",
"error": null,
"pages": [
{
"url": "https://www.southernhomebakery.com/",
"category": "home",
"screenshot_url": null
},
{
"url": "https://www.southernhomebakery.com/pages/privacy-policy",
"category": "privacy",
"screenshot_url": null
},
{
"url": "https://www.southernhomebakery.com/pages/about",
"category": "about",
"screenshot_url": null
},
{
"url": "https://www.southernhomebakery.com/pages/terms-of-service",
"category": "terms",
"screenshot_url": null
}
],
"title": "Southern Home Bakery - Custom Sugar Cookies from Orlando, Florida",
"domain": {
"domain": "southernhomebakery.com",
"domain_id": "2132417788_DOMAIN_COM-VRSN",
"registrar": {
"url": "http://tucowsdomains.com",
"name": "TUCOWS, INC.",
"organization": "TUCOWS, INC."
},
"creation_date": "2017-06-09T21:32:49.000+00:00",
"expiration_date": "2025-06-09T21:32:49.000+00:00"
},
"object": "website",
"parked": false,
"people": null,
"status": "online",
"addresses": [],
"created_at": "2024-11-12T19:56:28.770Z",
"updated_at": "2024-11-12T19:56:44.272Z",
"business_id": "a2352eb6-c87e-44ad-8d30-3b8fe57a1c02",
"description": "Custom, hand decorated sugar cookies and nostalgic Southern desserts to share with friends and family for any occasion and celebration!",
"phone_numbers": [],
"email_addresses": null,
"http_status_code": 200,
"business_name_match": true
}
I