← Back to Dashboard

Watson Natural Language Understanding

Text AnalysisActiveUnknownAuth: API KeyDoc: HTML
Visit Website ↗

Description

Natural language processing for advanced text analysis

✨ AI Summary

Analyze text, HTML, or URLs for various features using IBM Watson Natural Language Understanding, powered by AI.

Code Example

import requests
import base64

url = "https://api.natural-language-understanding.cloud.ibm.com/v1/analyze?version=2022-04-07"
api_key = "YOUR_API_KEY"
headers = {
    "Content-Type": "application/json",
    "Authorization": f"Basic {base64.b64encode(f'apikey:{api_key}'.encode()).decode()}"
}
data = {
    "text": "IBM is an American multinational technology and consulting company.",
    "features": {
        "entities": {"sentiment": True},
        "keywords": {"sentiment": True}
    }
}
response = requests.post(url, headers=headers, json=data)
print(response.json())

Live Health Metrics

Last 50 checks (10 min intervals)