Suno Beginner's Guide: From Sign-Up to Your First AI Song – Prompts, Style Tags & Complete Setup
Suno Complete Beginner’s Guide: Create Your First AI-Generated Song
Suno is an AI-powered music generation platform that lets anyone create full songs — vocals, instruments, and lyrics — using simple text prompts. Whether you’re a musician looking for quick demos or a complete beginner curious about AI music, this guide walks you through every step from account creation to your first polished track.
Step 1: Create Your Suno Account
- Visit suno.com and click “Sign Up” in the top-right corner.- Choose your sign-up method: Google, Discord, or Microsoft account.- After authentication, you’ll land on the Suno dashboard. Free accounts receive 50 credits per day (each song generation costs 5 credits for the basic model, 10 for v4).- Optionally, explore the Pro Plan ($10/month) for 2,500 credits/month and commercial use rights, or the Premier Plan ($30/month) for 10,000 credits/month.
Step 2: Understand the Suno Interface
The Suno dashboard is organized into key sections:
| Section | Purpose |
|---|---|
| **Create** | Generate new songs from prompts |
| **Library** | View and manage all your generated tracks |
| **Explore** | Discover trending community songs for inspiration |
| **Covers** | Create AI covers using existing melodies |
An upbeat summer pop song about road trips and freedom, with catchy guitar riffs and a sing-along chorus- Click **"Create"**. Suno will generate two variations of your song (each about 1–2 minutes long).- Listen to both versions, then click the heart icon to save your favorite.
## Step 4: Use Custom Mode for Full Control
Toggle **"Custom"** mode for precise control over lyrics, style, and title.
Writing Effective Lyrics
Use Suno’s structure tags to control song sections:
[Intro]
(Gentle acoustic guitar)
[Verse 1]
Driving down the open highway
Windows down and worries fade
Every mile a new beginning
Chasing sunlight, unafraid
[Chorus]
We’re running wild, running free
This road was made for you and me
Turn the music up and sing along
This is where we both belong
[Verse 2]
Starlit skies and campfire stories
Laughter echoing through the night
Every moment worth remembering
Everything just feels so right
[Chorus]
We’re running wild, running free
This road was made for you and me
[Bridge]
No map, no plan, no destination
Just the wind and open road
[Outro]
(Fade out with humming)
Available Structure Tags
| Tag | Function |
|---|---|
[Intro] | Instrumental or vocal opening |
[Verse] | Main narrative sections |
[Chorus] | Repeated catchy hook |
[Pre-Chorus] | Builds tension before chorus |
[Bridge] | Contrasting section for variety |
[Outro] | Song ending |
[Instrumental] | No vocals, instruments only |
[Break] | Pause or rhythmic shift |
The **"Style of Music"** field is where you define genre, mood, instruments, and vocal characteristics. This is one of the most powerful features in Suno.
Style Tag Formula
[Genre] [Sub-genre], [Mood/Energy], [Vocal Type], [Key Instruments], [Tempo]
Effective Style Tag Examples
| Goal | Style Tag |
|---|---|
| Chill lo-fi study music | lo-fi hip hop, chill, relaxing, mellow female vocals, piano, vinyl crackle, 80 bpm |
| Epic cinematic trailer | orchestral, cinematic, epic, dramatic, powerful choir, strings, brass, percussion, 140 bpm |
| K-pop dance track | k-pop, dance pop, energetic, catchy, female vocal group, synth, electronic beats, 128 bpm |
| Acoustic folk ballad | folk, acoustic, intimate, warm male vocals, fingerpicked guitar, harmonica, 90 bpm |
| Hard rock anthem | hard rock, anthemic, powerful, raspy male vocals, electric guitar, heavy drums, 130 bpm |
Suno offers API access for programmatic music generation. While the official API is in limited rollout, here's how to work with it:
curl -X POST https://studio-api.suno.ai/api/generate/v2/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A jazzy lo-fi track with piano and soft drums",
"make_instrumental": false,
"model": "chirp-v4",
"wait_audio": true
}'
For Python integration:
import requests
API_URL = “https://studio-api.suno.ai/api/generate/v2/”
headers = {
“Authorization”: “Bearer YOUR_API_KEY”,
“Content-Type”: “application/json”
}
payload = {
“prompt”: “upbeat electronic dance music, festival energy, 128 bpm”,
“make_instrumental”: True,
“model”: “chirp-v4”
}
response = requests.post(API_URL, json=payload, headers=headers)
print(response.json())
Pro Tips for Power Users
- Combine contradictory styles for unique results: try
baroque classical, trap beats, harpsichord, 808 bass.- Use parentheses for emphasis in lyrics:(whispered) don’t let goto control vocal delivery.- Specify “no” to exclude elements: addno drums, no percussionin style tags for stripped-back arrangements.- Set BPM explicitly to control energy: 60–80 for ballads, 100–120 for pop, 128+ for dance tracks.- Generate multiple variations: always create 3–4 versions of the same prompt and pick the best one.- Use Extend strategically: generate a strong chorus first, then extend backward to add verses.- Reference decades for feel: terms like80s synth popor90s grungestrongly influence output.
Troubleshooting Common Issues
| Problem | Cause | Solution |
|---|---|---|
| Song has garbled or unclear vocals | Overly complex lyrics or conflicting style tags | Simplify lyrics, use shorter sentences, reduce style tag complexity |
| Generated song is too short | Default generation creates 1–2 minute clips | Use the **Extend** feature to add sections, then merge with **Get Whole Song** |
| Style doesn't match prompt | Vague or contradictory style descriptions | Be specific: instead of "rock," use "classic rock, distorted electric guitar, raspy male vocals" |
| Credits depleted quickly | Each generation uses 5–10 credits | Plan prompts carefully before generating; use Simple mode for quick tests |
| Song cuts off abruptly | No [Outro] tag or fade instruction | Add [Outro] with (fade out) or (instrumental ending) |
| API returns 401 error | Invalid or expired API key | Regenerate your API key from the Suno developer dashboard |
Can I use Suno-generated songs commercially?
Yes, but only with a paid subscription (Pro or Premier plan). Free-tier songs are for personal, non-commercial use only. With a paid plan, you own the rights to your generated music and can use it in YouTube videos, podcasts, games, and other commercial projects. Always review the latest terms of service for specific licensing details.
What is the difference between Simple Mode and Custom Mode?
Simple Mode takes a single text description and handles everything automatically — Suno generates the lyrics, chooses the style, and creates the song. Custom Mode gives you separate fields for lyrics, style of music, and song title, allowing precise control over structure tags, vocal delivery, instrumentation, and genre. Beginners should start with Simple Mode and graduate to Custom Mode as they learn what works.
How do I create a song longer than 2 minutes?
Suno generates clips of approximately 1–2 minutes by default. To create a full-length song, use the Extend feature: click the three-dot menu on your clip, select Extend, and add new lyrics for the next section. Repeat this process to build verse-chorus-bridge structures. Once all sections are ready, use the Get Whole Song option to merge all clips into a single continuous track of up to 4 minutes.