🦡Get Creator F Takedown

Fetches information about a creator based on their username and specific song ID for fakedown purposes, including their songs, total stream count, and a video URL if available.

GET /get/creator/creatorFromUsername/:username/ftakedowns/:songId

Request Headers

  • Content-Type: application/json

Request Parameters

  • username (string) - The username of the creator.

  • songId (string) - The ID of the song to fetch specific details.

Response

{
  "creator": {
    "username": "string",
    // Other creator fields
  },
  "songs": [
    {
      "name": "string",
      "uploaderId": "string",
      "streamCount": "number",
      // Other song fields
    }
  ],
  "streamCount": "number",
  "videoUrl": "string"
}

Last updated