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/$%7Bsuccess?q=fetch&page=1&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 14498 results for "fetch"(2230ms)

testWeatherFetcher1 file match

@sjaskeprutUpdated 2 days ago

weatherFetcher1 file match

@sjaskeprutUpdated 2 days ago

FetchBasic2 file matches

@therUpdated 2 weeks ago

GithubPRFetcher

@andybakUpdated 2 weeks ago

proxiedfetch1 file match

@jaydenUpdated 2 weeks ago

fetch-socials4 file matches

@welsonUpdated 3 weeks ago
fetch and archive my social posts

fetchRssForSubcurrent2 file matches

@ashryanioUpdated 3 weeks ago

fetch_template2 file matches

@gwoods22Updated 3 weeks ago

HN-fetch-call3 file matches

@ImGqbUpdated 3 weeks ago
fetch HackerNews by API

FRAMERFetchBasic1 file match

@bresnikUpdated 3 weeks ago

personal_trmnlmalifold_cron.tsx4 matches

@ramtinalamiUpdated 57 mins ago
11 console.log("⏰ Cron at", new Date(interval.lastRunAt).toISOString());
12
13 // 1) Fetch & cache raw dump
14 const raw = await fetch(RAW_URL).then(r => r.json());
15 const rawJson = JSON.stringify(raw);
16 const prev = await sqlite.execute({
29 .slice(0, 50);
30
31 // 3) Fetch full details for those 50
32 const details = await Promise.all(
33 candidates.map(m => fetch(DETAIL_URL(m.id)).then(r => r.json())),
34 );
35 const detailsMap = new Map(details.map(m => [m.id, m]));

petitionmain.tsx1 match

@creativevoicesspeakingUpdated 2 hours ago
95
96 try {
97 const verifyResult = await fetch(verifyUrl, {
98 method: "POST",
99 body: verifyData,