Versions in this module Expand all Collapse all v0 v0.1.2 Jun 14, 2026 Changes in this version + const DefaultEmail type Author + Concepts string + Institution string type Client + func (c *Client) SearchJournals(ctx context.Context, query string, limit int) ([]Journal, error) type Config + Email string type Institution + Citations int + Country string + Works int + type Journal struct + Citations int + ID string + IsOA bool + Name string + Publisher string + Rank int + Works int v0.1.1 Jun 14, 2026 Changes in this version type Client + func (c *Client) GetWork(ctx context.Context, id string) (*Work, error) + func (c *Client) SearchInstitutions(ctx context.Context, query string, limit int) ([]Institution, error) + func (c *Client) SearchTopics(ctx context.Context, query string, limit int) ([]Topic, error) + type Institution struct + CitedByCount int + CountryCode string + ID string + Name string + Rank int + Type string + URL string + WorksCount int + type Topic struct + Description string + Field string + ID string + Name string + Rank int + WorksCount int v0.1.0 Jun 14, 2026 Changes in this version + const BaseURL + const DefaultUserAgent + const Host + type Author struct + Affiliation string + CitedByCount int + HIndex int + ID string + Name string + Rank int + WorksCount int + type Client struct + func NewClient(cfg Config) *Client + func (c *Client) GetPage(ctx context.Context, p string) (*Page, error) + func (c *Client) PageLinks(ctx context.Context, p string, limit int) ([]*Page, error) + func (c *Client) SearchAuthors(ctx context.Context, query string, limit int) ([]Author, error) + func (c *Client) SearchWorks(ctx context.Context, query string, limit int) ([]Work, error) + type Config struct + BaseURL string + Rate time.Duration + Retries int + Timeout time.Duration + UserAgent string + func DefaultConfig() Config + type Domain struct + func (Domain) Classify(input string) (uriType, id string, err error) + func (Domain) Info() kit.DomainInfo + func (Domain) Locate(uriType, id string) (string, error) + func (Domain) Register(app *kit.App) + type Page struct + Body string + ID string + Title string + URL string + type Work struct + Authors []string + CitedByCount int + DOI string + ID string + OpenAccess bool + PrimaryVenue string + Rank int + Title string + Type string + URL string + Year int