# Export Kick.com channel data with an API

**Use case:** 

Use this API-style Kick.com channel data exporter to get public streamer profiles, follower counts, live status, social links, and channel URLs.

## Input

```json
{
  "mode": "channels",
  "channelSlugs": [
    "xqc",
    "trainwreckstv",
    "asmongold"
  ]
}
```

## Output

```json
{
  "displayName": {
    "label": "Name",
    "format": "string"
  },
  "slug": {
    "label": "Username",
    "format": "string"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "string"
  },
  "followersCount": {
    "label": "Followers",
    "format": "integer"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isLive": {
    "label": "Live",
    "format": "boolean"
  },
  "socialLinks": {
    "label": "Social Links",
    "format": "array"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "videosUrl": {
    "label": "Videos URL",
    "format": "string"
  },
  "clipsUrl": {
    "label": "Clips URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Kick Data Scraper](https://apify.com/aitooolsmax/kick-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/aitooolsmax/kick-data-scraper) to learn more, explore other use cases, and run it yourself.