Multi-topic sentiment analysis with language filtering
Analyze sentiment across multiple related topics in specific languages with source quality filtering
入力パラメータ
| Parameter | Description | Type | Default | Required |
|---|---|---|---|---|
| topic.id | Multiple topics (comma-separated). | string | Yes | |
| sentiment.overall.polarity | Sentiment filter. | string | Yes | |
| published_at.start | Start date filter. | string | Yes | |
| language.code | Multiple languages (comma-separated). | string | Yes | |
| source.rank.opr.min | Minimum source quality. | string | Yes | |
| api_key | Your API key. | string | Yes | |
| per_page | Maximum number of articles to retrieve. | integer | 30 | No |
Workflow examples
Request for multi-topic sentiment analysis:
curl -X GET "https://api.apitube.io/v1/news/everything?topic.id=climate_change,renewable_energy,carbon_emissions&sentiment.overall.polarity=positive&published_at.start=2023-01-01&api_key=YOUR_API_KEY"
Request for comparative topic analysis with language filtering:
curl -X GET "https://api.apitube.io/v1/news/everything?topic.id=artificial_intelligence,machine_learning&language.code=en,de,jp&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"
Request for topic and entity intersection analysis:
curl -X GET "https://api.apitube.io/v1/news/everything?topic.id=cryptocurrency&entity.id=326,327&published_at.start=2023-01-01&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"
Request for topic-based expert opinion tracking:
curl -X GET "https://api.apitube.io/v1/news/everything?topic.id=quantum_computing&author.name=Michio%20Kaku,Brian%20Greene&published_at.start=2020-01-01&sort.by=published_at&api_key=YOUR_API_KEY"
のためのレシピ cURL
curl --location --globoff --request POST 'https://api.apitube.io/v1/news/everything?topic.id=climate_change%2Crenewable_energy%2Ccarbon_emissions&sentiment.overall.polarity=positive&published_at.start=2023-01-01&language.code=en%2Cde%2Cfr&source.rank.opr.min=0.6&api_key=YOUR_API_KEY&per_page=30' \
--header 'Content-Type: application/json'
のためのレシピ Python
import requests
url = "https://api.apitube.io/v1/news/everything"
querystring = {
"topic.id": "climate_change,renewable_energy,carbon_emissions",
"sentiment.overall.polarity": "positive",
"published_at.start": "2023-01-01",
"language.code": "en,de,fr",
"source.rank.opr.min": 0.6,
"api_key": "YOUR_API_KEY",
"per_page": 30
}
response = requests.request("GET", url, params=querystring)
print(response.text)
のためのレシピ Javascript
import axios from "axios"
const options = {
method: 'GET',
url: 'https://api.apitube.io/v1/news/everything',
params: {
"topic.id": "climate_change,renewable_energy,carbon_emissions",
"sentiment.overall.polarity": "positive",
"published_at.start": "2023-01-01",
"language.code": "en,de,fr",
"source.rank.opr.min": 0.6,
"api_key": "YOUR_API_KEY",
"per_page": 30
}};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
のためのレシピ PHP
require 'vendor/autoload.php';
use GuzzleHttp\Client;
$client = new Client();
$response = $client->request('GET', 'https://api.apitube.io/v1/news/everything', [
'query' => [
'topic.id' => 'climate_change,renewable_energy,carbon_emissions',
'sentiment.overall.polarity' => 'positive',
'published_at.start' => '2023-01-01',
'language.code' => 'en,de,fr',
'source.rank.opr.min' => 0.6,
'api_key' => 'YOUR_API_KEY',
'per_page' => 30,
],
]);
echo $response->getBody();
のためのレシピ Java
OkHttpClient client = new OkHttpClient().newBuilder().build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://api.apitube.io/v1/news/everything?topic.id=climate_change%2Crenewable_energy%2Ccarbon_emissions&sentiment.overall.polarity=positive&published_at.start=2023-01-01&language.code=en%2Cde%2Cfr&source.rank.opr.min=0.6&api_key=YOUR_API_KEY&per_page=30")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();