Multi-language news monitoring with sentiment tracking
Monitor news across multiple languages with sentiment analysis, source quality, and time filtering
Indataparameter
| Parameter | Description | Type | Default | Required |
|---|---|---|---|---|
| language.code | Multiple languages (comma-separated). | string | Yes | |
| title | Search query. | string | Yes | |
| sentiment.overall.polarity | Sentiment filter. | string | Yes | |
| published_at.start | Start date filter. | string | Yes | |
| source.rank.opr.min | Minimum source quality. | string | Yes | |
| sort.by | Sort by publication date. | string | Yes | |
| sort.order | Descending order. | string | Yes | |
| facet | Enable faceting. | boolean | true | Yes |
| facet.field | Fields for faceting. | string | Yes | |
| api_key | Your API key. | string | Yes | |
| per_page | Maximum number of articles to retrieve. | integer | 40 | No |
Workflow examples
Request for multi-language news monitoring:
curl -X GET "https://api.apitube.io/v1/news/everything?language.code=en,ja,de,fr&title=AI&sentiment.overall.polarity=positive&published_at.start=2023-01-01&source.rank.opr.min=0.7&sort.by=published_at&sort.order=desc&facet=true&facet.field=language.id,source.country.id&api_key=YOUR_API_KEY"
Request for multi-language analysis with source filtering:
curl -X GET "https://api.apitube.io/v1/news/everything?language.code=en,ja,de&source.rank.opr.min=0.7&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"
Request for language-specific business news:
curl -X GET "https://api.apitube.io/v1/news/everything?language.code=zh,ko&category.id=medtop:04000000&published_at.start=2023-01-01&api_key=YOUR_API_KEY"
Recept för cURL
curl --location --globoff --request POST 'https://api.apitube.io/v1/news/everything?language.code=en%2Cja%2Cde%2Cfr&title=AI&sentiment.overall.polarity=positive&published_at.start=2023-01-01&source.rank.opr.min=0.7&sort.by=published_at&sort.order=desc&facet=1&facet.field=language.id%2Csource.country.id&api_key=YOUR_API_KEY&per_page=40' \
--header 'Content-Type: application/json'
Recept för Python
import requests
url = "https://api.apitube.io/v1/news/everything"
querystring = {
"language.code": "en,ja,de,fr",
"title": "AI",
"sentiment.overall.polarity": "positive",
"published_at.start": "2023-01-01",
"source.rank.opr.min": 0.7,
"sort.by": "published_at",
"sort.order": "desc",
"facet": true,
"facet.field": "language.id,source.country.id",
"api_key": "YOUR_API_KEY",
"per_page": 40
}
response = requests.request("GET", url, params=querystring)
print(response.text)
Recept för Javascript
import axios from "axios"
const options = {
method: 'GET',
url: 'https://api.apitube.io/v1/news/everything',
params: {
"language.code": "en,ja,de,fr",
"title": "AI",
"sentiment.overall.polarity": "positive",
"published_at.start": "2023-01-01",
"source.rank.opr.min": 0.7,
"sort.by": "published_at",
"sort.order": "desc",
"facet": true,
"facet.field": "language.id,source.country.id",
"api_key": "YOUR_API_KEY",
"per_page": 40
}};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
Recept för PHP
require 'vendor/autoload.php';
use GuzzleHttp\Client;
$client = new Client();
$response = $client->request('GET', 'https://api.apitube.io/v1/news/everything', [
'query' => [
'language.code' => 'en,ja,de,fr',
'title' => 'AI',
'sentiment.overall.polarity' => 'positive',
'published_at.start' => '2023-01-01',
'source.rank.opr.min' => 0.7,
'sort.by' => 'published_at',
'sort.order' => 'desc',
'facet' => 1,
'facet.field' => 'language.id,source.country.id',
'api_key' => 'YOUR_API_KEY',
'per_page' => 40,
],
]);
echo $response->getBody();
Recept för 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?language.code=en%2Cja%2Cde%2Cfr&title=AI&sentiment.overall.polarity=positive&published_at.start=2023-01-01&source.rank.opr.min=0.7&sort.by=published_at&sort.order=desc&facet=1&facet.field=language.id%2Csource.country.id&api_key=YOUR_API_KEY&per_page=40")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();