Back to projects
3 min read
NewsData.NET
A comprehensive .NET SDK for the newsdata.io API

newsdata-net

NuGetNuGetCount

Project Overview

NewsData.NET is an unofficial .NET client package for the NewsData.io API, designed to facilitate easy access to various news-related data. The package is compatible with .NET Standard 2.1 and provides a strongly-typed interface for interacting with the API.

Detailed Description

Goal: Create a robust .NET client library for the NewsData.io API, making it easy for .NET developers to integrate news data into their applications.

Documentation

News Data API docs can be seen here.

Installation

dotnet add package NewsData.NET

Usage

To start using the NewsData.NET package, first initialize the NewsDataClient. This requires specifying a ClientType from the NewsData.NET.ClientType enumeration and an API key.

NewsData.NET.ClientType:

public enum ClientType
{
    None = 0,
    LatestNews,
    CryptoNews,
    NewsArchive,
    NewsSources
}
string apiKey = "your_api_key_here";
// The NewsDataClient also supports passing an HttpClient as an optional parameter
using INewsDataClient client = new NewsDataClient(ClientType.LatestNews, apiKey/*, httpClient*/);

Then we call the GetAsync method and pass an DefaultRequest(IDictionary<string, string> queryStringCollection, string pageIndex = null) including all the query string parameters.

var queryString = new Dictionary<string, string>
{
    // ...
    { "country", "al" },
    { "language", "sq" },
    { "timezone", "Europe/Berlin" },
    { "size", "10" }, // free tier
    // ...
};

var result = await client.GetAsync(new DefaultRequest(queryString));
// Result will be of type NewsData.NET.ObjectModels.ResponseModels.NewsDataApiResult

Aggregating Paged News

For fetching a fixed amount of data across pages, use the AggregatePagedNewsAsync method.

// pass querystring as IDictionary<string, string> and articlesToBeFetched
var results = await client.AggregatePagedNewsAsync(queryString, articlesToBeFetched: 25);
// The result will be a list of NewsData.NET.ObjectModels.ResponseModels.SuccessResult

Dependencies

RestSharp

This package relies on the RestSharp library, a popular .NET library used for making HTTP requests. Ensure that you have the RestSharp package installed in your project. https://github.com/restsharp/RestSharp

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

Licensed under the MIT License.


Enjoyed this post?

Subscribe to get the latest updates directly in your inbox!

Leave a Comment