BetaThis platform is in beta testing. All transactions use test mode.

Next.js Example

// app/api/screen/route.ts
export async function POST(req){
  const {input} = await req.json();

  const res = await fetch("https://api.veria.cc/v1/screen", {
    method:"POST",
    headers:{ "Content-Type":"application/json" },
    body: JSON.stringify({input})
  });

  return Response.json(await res.json());
}