> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mountsea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Mashup Lyrics

> Generate mashup lyrics by combining lyrics from two songs

Generate mashup lyrics by combining lyrics from two songs. Use `[Instrumental]` for instrumental tracks. After generating mashup lyrics, use [Generate](/api-reference/suno/generate) with `task=mashup` to create the music.

## Request Body

<ParamField body="lyrics_a" type="string" required>
  Lyrics of the first song. Use `[Instrumental]` if the track is instrumental.
</ParamField>

<ParamField body="lyrics_b" type="string" required>
  Lyrics of the second song. Use `[Instrumental]` if the track is instrumental.
</ParamField>

## Response

<ResponseField name="taskId" type="string">
  The task ID. Use this to query task status via [Get Task Status](/api-reference/suno/task).
</ResponseField>

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.mountsea.ai/suno/v2/mashupLyrics \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer your-api-key" \
    -d '{
      "lyrics_a": "[Verse 1]\nWalking down the street today\nSunshine lighting up my way\n\n[Chorus]\nFeeling so alive, feeling so free",
      "lyrics_b": "[Instrumental]"
    }'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://api.mountsea.ai/suno/v2/mashupLyrics', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer your-api-key'
    },
    body: JSON.stringify({
      lyrics_a: '[Verse 1]\nWalking down the street today\nSunshine lighting up my way\n\n[Chorus]\nFeeling so alive, feeling so free',
      lyrics_b: '[Instrumental]'
    })
  });

  const data = await response.json();
  console.log(data.taskId);
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      'https://api.mountsea.ai/suno/v2/mashupLyrics',
      headers={
          'Content-Type': 'application/json',
          'Authorization': 'Bearer your-api-key'
      },
      json={
          'lyrics_a': '[Verse 1]\nWalking down the street today\nSunshine lighting up my way\n\n[Chorus]\nFeeling so alive, feeling so free',
          'lyrics_b': '[Instrumental]'
      }
  )

  data = response.json()
  print(data['taskId'])
  ```
</CodeGroup>

## Response Example

```json theme={null}
{
  "taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b"
}
```

## Workflow

<Steps>
  <Step title="Generate Mashup Lyrics">
    Call this endpoint with lyrics from two songs to generate combined mashup lyrics.
  </Step>

  <Step title="Check Task Status">
    Poll the [Task Status](/api-reference/suno/task) endpoint with the returned `taskId` to get the generated mashup lyrics.
  </Step>

  <Step title="Generate Mashup Music">
    Use the mashup lyrics with the [Generate](/api-reference/suno/generate) endpoint (`task=mashup`) to create the final mashup track.
  </Step>
</Steps>

<Tip>
  Use `[Instrumental]` as the lyrics value when one of the tracks doesn't have vocals. This is useful when creating mashups between a vocal track and an instrumental track.
</Tip>
