Like this. ```ts fetch('https://...', { next: { revalidate: 3600 } }) ``` ```ts export default async function Page() { const res = await fetch('https://...', { next: { tags: ['collection'] } }) const data = await res.json() // ... } ```