Skip to main content
GET
/
business
/
{businessID}
/
adverse-media
Adverse Media
curl --request GET \
  --url https://api.joinworth.com/integration/api/v1/business/{businessID}/adverse-media \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Adverse Media data fetched successfully",
  "data": {
    "id": "aabbccdd-eeff-aabb-ccdd-eeffaabbccdd",
    "business_id": "aabbccdd-eeff-aabb-ccdd-eeffaabbccdd",
    "total_risk_count": 4,
    "high_risk_count": 0,
    "medium_risk_count": 0,
    "low_risk_count": 4,
    "average_risk_score": "1",
    "articles": [
      {
        "id": "aabbccdd-eeff-aabb-ccdd-eeffaabbccdd",
        "title": "Genistein, a Natural Isoflavone, Alleviates Seizure-Induced Respiratory Arrest in DBA/1 Mice",
        "link": "https://www.frontiersin.org/journals/neurology/articles/10.3389/fneur.2021.761912/full",
        "date": "2021-11-03T07:00:00.000Z",
        "source": "Frontiers",
        "entity_focus_score": 1,
        "risk_level": "LOW",
        "risk_description": "The title does not contain any adverse keywords, negative sentiment, or direct mention of the business entity or individuals. It appears to be related to a scientific study rather than an adverse media event.",
        "final_score": 42.3,
        "media_type": "business",
        "created_at": "2025-02-18T11:39:46.750Z",
        "updated_at": "2025-02-18T11:39:46.750Z"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.worthai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT or access token issued by the identity provider; required to authorize adverse media requests.

Path Parameters

businessID
string
required

Unique identifier of the business whose adverse media screening results are being requested. UUID of the business record in the integration service.

Example:

"aabbccdd-eeff-aabb-ccdd-eeffaabbccdd"

Response

OK

Successful response wrapper for adverse media retrieval operations.

status
string

Outcome flag for the request; typically "success" when data is returned.

message
string

Human-readable confirmation that the adverse media payload was generated successfully.

data
Data106 · object

Business-level adverse media summary and associated article list.