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=6&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"(959ms)

FetchBasic2 file matches

@julesb22•Updated 10 months ago

FetchBasic_deleted_17295039551 file match

@julesb22•Updated 10 months ago

fetchValInfo2 file matches

@pomdtr•Updated 11 months ago

mlbScoreFetcher1 file match

@charmaine•Updated 11 months ago

ThreadmarkLISTFetcher22 file matches

@willthereader•Updated 11 months ago

ThreadmarkLISTFetcher1 file match

@willthereader•Updated 11 months ago

BrowserbaseFetcherFromURL1 file match

@willthereader•Updated 11 months ago

Fetch2 file matches

@niek•Updated 11 months ago

fetchTwitterUserInfoBroken1 file match

@shawnbasquiat•Updated 1 year ago

fetchIpfsPosts1 file match

@stevedylandev•Updated 1 year 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 });