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=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 14499 results for "fetch"(1282ms)

ios_AppStoreFetcher1 file match

@arfanUpdated 5 months ago

FetchBasic1 file match

@BunsDevUpdated 5 months ago

fetchBinance1 file match

@svbasiUpdated 5 months ago

gistFetcher1 file match

@tgrecojsUpdated 5 months ago

FetchBasic1 file match

@thesagrotanUpdated 6 months ago

FetchBasic1 file match

@stevekrouseUpdated 6 months ago

cfetch2 file matches

@temptempUpdated 7 months ago

brooklynWeatherFetcher1 file match

@jjoak3Updated 7 months ago

fetchNewPublicGitHubRepos1 file match

@toowiredUpdated 7 months ago

fetchXML2 file matches

@g000mUpdated 7 months ago

email-attachment-handlerhandler.ts2 matches

@sorcoroUpdated 27 mins ago
159 formData.append("client_secret", clientSecret);
160
161 const response = await fetch(url, {
162 method: "POST",
163 headers: {
200 };
201
202 const response = await fetch(url, {
203 method: "POST",
204 headers,

personal_trmnlpolymarket_cron.tsx2 matches

@ramtinalamiUpdated 4 hours ago
16 console.log("⏰ Polymarket cron at", new Date(interval.lastRunAt).toISOString());
17
18 // 1) Fetch markets from Polymarket API
19 const params = new URLSearchParams({
20 closed: "false",
26
27 const url = `https://gamma-api.polymarket.com/markets?${params}`;
28 const raw = await fetch(url).then(r => r.json());
29 const rawJson = JSON.stringify(raw);
30