Skip to content

zjsxfly/newsapi-go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

News Api Golang

Client for the News API

Installation

You can simply do go get github.com/kaelanb/newsapi-go

DOC

Full Documentation for all the endpoints can be found here

Request parameters:

  • country : ae ar at au be bg br ca ch cn co cu cz de eg fr gb gr hk hu id ie il in it jp kr lt lv ma mx my ng nl no nz ph pl pt ro rs ru sa se sg si sk th tr tw ua us ve za

  • category: business entertainment general health science sports technology (can't be mixed with sources parameter)

  • sources: news sources

  • q: keywords to search for

  • pageSize: page size

  • page: page number

Example

import (
	"fmt"
	"log"

	newsapi	"github.com/kaelanb/newsapi-go"
)

func main() {
	apikey := "apikeyhere"
	client := newsapi.New(apikey)

	query1 := []string{"country=ca"}
	newsResponse, err := client.GetTopHeadlines(query1)
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println(newsResponse)
}

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%