AUS FORM+
Loading live fields from skyracingworld.com...
Tue 7 Apr 2026 0 rated
πŸ”‘ Click to enter your Anthropic API key and enable AI ratings console.anthropic.com/settings/keys
⚑ How to Go Fully Live
Step 1 β€” Cloudflare Worker (Free, 5 mins)
// worker.js
export default {
 async fetch(req, env) {
  if (req.method==='OPTIONS')
   return new Response(null, {headers:{
    'Access-Control-Allow-Origin':'*',
    'Access-Control-Allow-Headers':'*'
   }});
  const body = await req.json();
  const res = await fetch(
   'https://api.anthropic.com/v1/messages',
   { method:'POST', headers:{
    'Content-Type':'application/json',
    'x-api-key': env.ANTHROPIC_KEY,
    'anthropic-version':'2023-06-01'
    }, body: JSON.stringify(body) }
  );
  const data = await res.json();
  return Response.json(data, {headers:
   {'Access-Control-Allow-Origin':'*'}});
 }
};
wrangler deploy
wrangler secret put ANTHROPIC_KEY
Then paste your worker URL in the key modal above.
Cost: FREE (100k req/day)
Step 2 β€” Host on Vercel (Free, 2 mins)
  1. Push this HTML file to GitHub repo
  2. Go to vercel.com β†’ Import repo
  3. Framework: Other (static HTML)
  4. Deploy β†’ get live URL instantly
  5. Share URL β€” works on any device
Step 3 β€” Auto Date Detection
The app already auto-detects today's AEST date and loads the correct meetings. Sky Racing URLs use UTC+1 offset β€” handled automatically.
Fields refresh every 30 mins between 8am–6pm AEST. Scratchings update automatically.
Step 4 β€” Live Odds (optional)
Add Betfair Exchange API polling for real-time odds updates. Free developer account at developer.betfair.com. Poll every 60s before jump time.