Skip to content

niyiomotoso/the-guardian-api-kotlin-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Guardian API Kotlin Client

Kotlin client library for the Guardian APIs. See documentation here. All available API modules are supported - Content, Tags, Sections, Editions, and Single Item.

Get API key

Sign up for an API key here

Making Requests

The primary Client\GuardianApi class is a factory class that creates objects for each of the API modules, allowing you to make requests to any of them with your desired request parameters. You have to first create an object for it, then access your desired API module via the object. See the code snippets below:

val guardianApi = GuardianApi(THE_GUARDIAN_API_KEY)

For Content:

val response = this.guardianApi.content().setQuery("12 years a slave")
    .setTag("film/film,tone/reviews")
    .setFromDate("2023-03-20")
    .setShowTags("contributor")
    .setShowFields("starRating,headline,thumbnail,short-url")
    .setOrderBy("relevance").fetch()

For Tags:

val response = this.guardianApi.tags().setQuery("apple")
    .setSection("technology")
    .setShowReferences("all").fetch()

For Sections:

val response = this.guardianApi.sections().setQuery("business").fetch()

For Editions:

val response = this.guardianApi.editions().setQuery("uk").fetch()

For Single Item:

val response = this.guardianApi.singleItem().setId("/sport/2022/oct/07/cricket-jos-buttler-primed-for-england-comeback-while-phil-salt-stays-focused")
        .setShowStoryPackage(true)
        .setShowEditorsPicks(true)
        .setShowMostViewed(true)
        .setShowRelated(true).fetch()