Call endpoints from the server
Esta página aún no está disponible en tu idioma.
Endpoints can be used to serve many kinds of data. This recipe calls a server endpoint from a page's component script to display a greeting, without requiring an additional fetch request.
Prerequisites
- A project with SSR (output: 'server') enabled
Recipe
Create an endpoint in a new file
src/pages/api/hello.tsthat returns some data:import type { APIRoute } from 'astro' export const GET: APIRoute = () => { return new Response( JSON.stringify({ greeting: 'Hello', }), ) }On any Astro page, import the
GET()method from the endpoint. Call it with theAstroglobal to provide the request context, and use the response on the page:--- import { GET } from './api/hello.ts' let response = await GET(Astro) const data = await response.json() --- <h1>{data.greeting} world!</h1>