# Get a SoundCloud User Profile from Its URL

**Use case:** 

Resolve a public SoundCloud profile URL into one user record with username, bio, location, follower counts, artwork, and profile metadata.

## Input

```json
{
  "queries": [
    "lofi beats"
  ],
  "playlistQueries": [],
  "profileUrls": [
    {
      "url": "https://soundcloud.com/chillhopdotcom"
    }
  ],
  "userQueries": [],
  "userUrls": [
    {
      "url": "https://soundcloud.com/chillhopdotcom"
    }
  ],
  "chartGenres": [],
  "maxItems": 1,
  "genres": [],
  "tags": [],
  "access": [],
  "maxRuntimeSecs": 120,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "url": {
    "label": "Track URL",
    "format": "string"
  },
  "artistUsername": {
    "label": "Artist username",
    "format": "string"
  },
  "artistFullName": {
    "label": "Artist display name",
    "format": "string"
  },
  "artistVerified": {
    "label": "Artist verified",
    "format": "boolean"
  },
  "artistCity": {
    "label": "Artist city",
    "format": "string"
  },
  "artistCountry": {
    "label": "Artist country",
    "format": "string"
  },
  "artistFollowersCount": {
    "label": "Artist followers",
    "format": "integer"
  },
  "artistFollowingsCount": {
    "label": "Artist following",
    "format": "integer"
  },
  "artistTrackCount": {
    "label": "Artist tracks",
    "format": "integer"
  },
  "artistPlaylistCount": {
    "label": "Artist playlists",
    "format": "integer"
  },
  "artistLikesCount": {
    "label": "Artist likes",
    "format": "integer"
  },
  "artistWebsite": {
    "label": "Artist website",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [SoundCloud Scraper: Tracks, Playlists & Users](https://apify.com/fetch_cat/soundcloud-tracks-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/soundcloud-tracks-search-scraper) to learn more, explore other use cases, and run it yourself.