Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/image-url.jpg%20%22Image%20title%22?q=fetch&page=4&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=fetch

Returns an array of strings in format "username" or "username/projectName"

Found 18971 results for "fetch"(728ms)

fetchRss2 file matches

@pierremenard•Updated 5 months ago

fetchAndConvertToWebP1 file match

@AIWB•Updated 5 months ago

FetchBasic1 file match

@consitini•Updated 5 months ago

fetchCongressTradeReports1 file match

@Mustakim12•Updated 6 months ago

fetchRSS1 file match

@rawwerks•Updated 6 months ago

cookieFetch2 file matches

@gwoods22•Updated 7 months ago

FetchBasic1 file match

@charmaine•Updated 7 months ago

FetchBasic2 file matches

@dtecho•Updated 7 months ago

fetchEvents1 file match

@richardwu9•Updated 7 months ago

cronemain.ts1 match

@jrmann100•Updated 28 mins ago
27app.post("/api/interactions", verify, handleInteraction);
28
29export default app.fetch;
30

untitled-2035main.ts4 matches

@chatgot•Updated 40 mins ago
76 );
77
78 // Parallel fetch NFL and Fantasy data
79 const [nflResponse, fantasyResponse] = await Promise.all([
80 fetch(
81 "http://site.api.espn.com/apis/site/v2/sports/football/nfl/scoreboard",
82 ),
83 fetch(
84 `https://lm-api-reads.fantasy.espn.com/apis/v3/games/ffl/seasons/${YEAR}/segments/0/leagues/${LEAGUE_ID}?view=mMatchup&view=mMatchupScore&view=mTeam&view=mRoster&view=mLiveScoring&scoringPeriodId=${currentWeek}`,
85 {
298 } catch (error) {
299 return Response.json({
300 error: "Failed to fetch game context",
301 details: error.message,
302 });