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=3&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"(755ms)

FetchBasic1 file match

@bresnik•Updated 3 months ago

fetchTechNews

@josiasaurel•Updated 3 months ago

agentplex-deal-flow-email-fetch1 file match

@anandvc•Updated 3 months ago

proxyFetch2 file matches

@vidar•Updated 4 months ago

TAC_FetchBasic2 file matches

@A7_OMC•Updated 4 months ago

hn-fetch1 file match

@matija•Updated 4 months ago

fetchPaginatedData2 file matches

@nbbaier•Updated 4 months ago

FetchBasic1 file match

@fredmoon•Updated 4 months ago

tweetFetcher2 file matches

@nbbaier•Updated 4 months ago

fetchAndStoreOpenAiUsage22 file matches

@nbbaier•Updated 5 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 });