What this conversion means in practice
One minute is exactly 60 seconds. That sounds trivial until APIs store seconds, ovens use minutes, and race splits mix both. This page exists so you can move a single value without touching a general-purpose table.
Sports, fitness, and broadcasting often quote minutes and seconds together; engineering and programming often want everything in seconds. Converting in one step reduces transcription errors.
If you are converting fractional minutes (0.5 min), the answer is still exact in principle; only display rounding makes it look messy.
The key relationship on this page is 1 minutes = 60 seconds. Use it for quick sanity checks: if the order of magnitude looks wrong, re-read the source unit and whether the value was already converted.
How to convert minute to second
Multiply the minute value by 60 to get second.
Example: 4 minutes × 60 = 240 seconds
Timers under one minute are sometimes entered as “90” meaning 90 seconds—always confirm whether the source meant seconds or minutes.
Minute
Definition: One minute is 60 seconds; it is a non-SI unit accepted for use with SI.
History and origin: Derived from ancient sexagesimal divisions; standardized globally for civil timekeeping.
Current use: Scheduling, cooking, fitness, broadcasting, and everyday duration estimates.
Second
Definition: The second (s) is the SI base unit of time, defined using atomic clocks (cesium-133 transition frequency).
History and origin: Historically tied to Earth’s rotation; since 1967 the definition has been based on atomic physics for global precision.
Current use: Universal for science, engineering, computing, and any precise duration or frequency work.
Minute to Second conversion table
| Minute (minutes) | Second (seconds) |
|---|---|
| 0.25 minutes | 15 seconds |
| 0.5 minutes | 30 seconds |
| 1 minutes | 60 seconds |
| 2 minutes | 120 seconds |
| 5 minutes | 300 seconds |
| 15 minutes | 900 seconds |
| 30 minutes | 1,800 seconds |
| 60 minutes | 3,600 seconds |
Minute to Second FAQ
How many seconds are in one minute?
Exactly 60. Multiply minutes by 60 to get seconds; divide seconds by 60 to get minutes.
How many seconds are in 3 minutes?
3 × 60 = 180 seconds.
Why does my code use 3,600 for an hour but 60 for a minute?
There are 60 seconds per minute and 3,600 seconds per hour (60 × 60). Chain both when converting hours to seconds.