Last active 1743282034

Revision 4f4f26e1ed0e55427fd6f7a32734723520bbaacc

README.md Raw

Fetching JSON Data in Astro

Fetch

To fetch data in Astro, you need to request from the JSON url:

const RawData = new Request('https://example.org/data.json')

Then, format it to JSON, if not already:

const JsonData = RawData.json()
index.astro Raw
1