# README
opensea-go
Golang's library for OpenSea APIs (https://docs.opensea.io/reference).
Get Started
Get it
go get -u github.com/pinealctx/opensea-go
Use it
package main
import (
"context"
"github.com/pinealctx/opensea-go"
"log"
)
func main() {
var cli = opensea.New(opensea.WithTestNets(true))
var asset, err = cli.Asset(context.Background(), &opensea.AssetRequest{
AssetContractAddress: "0x66583bd73a27c9245b723ff6a58f872234c3a50a",
TokenID: "3",
})
if err != nil {
log.Fatalln(err)
return
}
log.Println(asset)
}
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Type aliases
No description provided by the author