# Refresh SoundCloud track audio links

**Use case:** 

Resolve known public SoundCloud tracks into fresh progressive MP3 and HLS links with metadata and signed-link expiry context.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://soundcloud.com/forss/flickermood"
    }
  ],
  "downloadAudio": false,
  "maxConcurrency": 5,
  "maxAudioSizeMb": 100
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "permalinkUrl": {
    "label": "Track",
    "format": "string"
  },
  "creator": {
    "label": "Creator",
    "format": "object"
  },
  "durationMs": {
    "label": "Duration (ms)",
    "format": "number"
  },
  "license": {
    "label": "License",
    "format": "string"
  },
  "streamable": {
    "label": "Streamable",
    "format": "boolean"
  },
  "audioUrl": {
    "label": "Audio URL",
    "format": "string"
  },
  "audioExpiresAt": {
    "label": "Audio expires",
    "format": "string"
  },
  "audioStorageUrl": {
    "label": "Stored audio",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Resolved at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [SoundCloud Track Audio Downloader](https://apify.com/automation-lab/soundcloud-track-audio-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/soundcloud-track-audio-downloader) to learn more, explore other use cases, and run it yourself.