# Export Google Scholar Author Metrics

**Use case:** 

Extract public Google Scholar profile metrics, citation counts, h-index values, interests, and affiliation for an author profile.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://scholar.google.com/citations?user=qc6CJjYAAAAJ&hl=en"
    }
  ],
  "userIds": [],
  "maxPublications": 0,
  "includeCoauthors": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "userId": {
    "label": "User ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "affiliation": {
    "label": "Affiliation",
    "format": "text"
  },
  "verifiedEmailDomain": {
    "label": "Verified email domain",
    "format": "text"
  },
  "interests": {
    "label": "Interests",
    "format": "text"
  },
  "citations": {
    "label": "Citations",
    "format": "number"
  },
  "citationsSince2019": {
    "label": "Citations since 2019",
    "format": "number"
  },
  "hIndex": {
    "label": "h-index",
    "format": "number"
  },
  "hIndexSince2019": {
    "label": "h-index since 2019",
    "format": "number"
  },
  "i10Index": {
    "label": "i10-index",
    "format": "number"
  },
  "i10IndexSince2019": {
    "label": "i10-index since 2019",
    "format": "number"
  },
  "publicationCount": {
    "label": "Publication rows",
    "format": "number"
  },
  "publications": {
    "label": "Publications",
    "format": "text"
  },
  "coauthors": {
    "label": "Coauthors",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Scholar Profiles Scraper](https://apify.com/fetch_cat/google-scholar-profiles-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/google-scholar-profiles-scraper) to learn more, explore other use cases, and run it yourself.