# GETTR profile URL metadata extractor

**Use case:** 

Extract structured public account metadata from a GETTR profile URL for research, enrichment, and export.

## Input

```json
{
  "usernames": [
    "mikepompeo"
  ],
  "startUrls": [
    {
      "url": "https://gettr.com/user/mikepompeo"
    }
  ],
  "maxConcurrency": 1
}
```

## Output

```json
{
  "displayName": {
    "label": "Display name",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "avatarUrl": {
    "label": "Avatar",
    "format": "image"
  },
  "externalUrl": {
    "label": "External URL",
    "format": "link"
  },
  "profileUrl": {
    "label": "GETTR profile",
    "format": "link"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "followingCount": {
    "label": "Following",
    "format": "number"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "joinedAt": {
    "label": "Joined",
    "format": "date"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [GETTR Public Profiles Scraper](https://apify.com/automation-lab/gettr-public-profiles-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/gettr-public-profiles-scraper) to learn more, explore other use cases, and run it yourself.