ESPN's hidden API endpoints
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
| "use client" | |
| import * as React from "react" | |
| import { buttonVariants } from "@/components/ui/button" | |
| import { ScrollArea } from "@/components/ui/scroll-area" | |
| import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select" | |
| import { cn } from "@/lib/utils" | |
| import { ChevronLeft, ChevronRight } from "lucide-react" | |
| import { DayPicker, DropdownProps } from "react-day-picker" |
| import { serve } from "https://deno.land/std@0.162.0/http/server.ts"; | |
| import { Server } from "https://deno.land/x/socket_io@0.2.0/mod.ts"; | |
| import { Hono } from "https://deno.land/x/hono@v3.0.0/mod.ts"; | |
| import { logger, html } from "https://deno.land/x/hono@v3.0.0/middleware.ts"; | |
| const app = new Hono(); | |
| app.use("*", logger()); | |
| app.get("/", (c) => { | |
| return c.html( |
| import './App.css'; | |
| import { useEffect, useState } from 'react'; | |
| import { | |
| Program, | |
| Provider, | |
| BN, | |
| web3, | |
| } from '@project-serum/anchor' | |
| import { | |
| Connection, |
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard