Response Types

This is an alphabetic listing of all response types.

Album

type Album struct {
	ID     int
	Name   string
	Year   int
	Artist struct {
		ID   int
		Name string
	}
	Tracks []struct {
		ID   int
		Name string
	}
}

Artist

type Artist struct {
	ID     int
	Name   string
	Albums []struct {
		ID   int
		Name string
		Year int
	}
	Tracks []struct {
		ID   int
		Name string
	}
}

Tags

BanCheck

BanInfo

BansList

Currency

GeoIP

GIS

Image

LyricsSearch

Reddit

Track

Weather

WikiHowImage

Last updated

Was this helpful?