Python
Generate content using the TrendScribbr API from Python with the requests library.
python
import requests
API_KEY = "your-api-key-here"
BASE_URL = "https://your-domain.com/agents/api"
def generate_article(topic):
url = f"{BASE_URL}/articles/generate/"
headers = {
"X-API-Key": API_KEY,
"Content-Type": "application/x-www-form-urlencoded"
}
data = {
"content_type": "article",
"custom_topic": topic
}
response = requests.post(url, headers=headers, data=data)
return response.json()
# Usage
result = generate_article("The Future of AI in Healthcare")
print(result)