Skip to main content

Apito REST API Integration with Golang

Using net/http library

note

Always remember to replace API_SECRET of the Bearer Token and project-id of the URL with the correct value from apito console. Go to this page if you do not know where to find your api secrets and endpoints for your project

package main

import (
"fmt"
"net/http"
"io/ioutil"
)

func main() {

url := "https://myapi.com/api"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("content-type", "application/json")
req.Header.Add("authorization", "Bearer API_SECRET")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)

fmt.Println(res)
fmt.Println(string(body))

}