Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joeychilson/osrsapi

A library for interacting with the Old School Runescape API.
https://github.com/joeychilson/osrsapi

api client go osrs runescape

Last synced: about 24 hours ago
JSON representation

A library for interacting with the Old School Runescape API.

Awesome Lists containing this project

README

        

# osrsapi

A library for interacting with the Old School Runescape API.

## Usage

```go
package main

import (
"context"
"fmt"

"github.com/joeychilson/osrsapi"
)

func main() {
client := osrsapi.NewClient()

item, err := client.Item(context.Background(), 4151)
if err != nil {
panic(err)
}

fmt.Println(item)
}
```