Get news articles with specific title and exclusion
How to get news articles with specific title and exclude those with another title
Input parameters
Parameter | Description | Type | Default | Required |
---|---|---|---|---|
title | The title of the articles | string | Yes | |
ignore.title | The title of the articles to ignore | string | Yes | |
limit | The number of articles to return | integer | 20 | No |
api_key | Your API key | string | No |
Recipe for cURL
curl --location --globoff --request POST 'https://api.apitube.io/v1/news/everything?title=Satoshi&ignore.title=Vitalik&limit=20&api_key=YOUR_API_KEY' \
--header 'Content-Type: application/json'
Recipe for Python
import requests
url = "https://api.apitube.io/v1/news/everything"
querystring = {
"title": "Satoshi",
"ignore.title": "Vitalik",
"limit": 20,
"api_key": "YOUR_API_KEY"
}
response = requests.request("GET", url, params=querystring)
print(response.text)
Recipe for Javascript
import axios from "axios"
const options = {
method: 'GET',
url: 'https://api.apitube.io/v1/news/everything',
params: {
"title": "Satoshi",
"ignore.title": "Vitalik",
"limit": 20,
"api_key": "YOUR_API_KEY"
}};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
Recipe for PHP
require 'vendor/autoload.php';
use GuzzleHttp\Client;
$client = new Client();
$response = $client->request('GET', 'https://api.apitube.io/v1/news/everything', [
'query' => [
'title' => 'Satoshi',
'ignore.title' => 'Vitalik',
'limit' => 20,
'api_key' => 'YOUR_API_KEY',
],
]);
echo $response->getBody();
Recipe for 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?title=Satoshi&ignore.title=Vitalik&limit=20&api_key=YOUR_API_KEY")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();