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=2&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"(1338ms)

FetchBasic1 file match

@bresnikUpdated 3 weeks ago

fetchTechNews

@josiasaurelUpdated 4 weeks ago

agentplex-deal-flow-email-fetch1 file match

@anandvcUpdated 1 month ago

proxyFetch2 file matches

@vidarUpdated 1 month ago

TAC_FetchBasic2 file matches

@A7_OMCUpdated 1 month ago

hn-fetch1 file match

@matijaUpdated 1 month ago

fetchPaginatedData2 file matches

@nbbaierUpdated 2 months ago

FetchBasic1 file match

@fredmoonUpdated 2 months ago

tweetFetcher2 file matches

@nbbaierUpdated 2 months ago

fetchAndStoreOpenAiUsage22 file matches

@nbbaierUpdated 2 months ago

email-attachment-handlerhandler.ts2 matches

@sorcoroUpdated 1 hour ago
156 formData.append('client_secret', clientSecret);
157
158 const response = await fetch(url, {
159 method: 'POST',
160 headers: {
197 };
198
199 const response = await fetch(url, {
200 method: 'POST',
201 headers,

personal_trmnlpolymarket_cron.tsx2 matches

@ramtinalamiUpdated 3 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