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=5&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"(4154ms)

FetchBasic2 file matches

@julesb22Updated 8 months ago

FetchBasic_deleted_17295039551 file match

@julesb22Updated 8 months ago

fetchValInfo2 file matches

@pomdtrUpdated 8 months ago

mlbScoreFetcher1 file match

@charmaineUpdated 8 months ago

ThreadmarkLISTFetcher22 file matches

@willthereaderUpdated 8 months ago

ThreadmarkLISTFetcher1 file match

@willthereaderUpdated 8 months ago

BrowserbaseFetcherFromURL1 file match

@willthereaderUpdated 8 months ago

Fetch2 file matches

@niekUpdated 8 months ago

fetchTwitterUserInfoBroken1 file match

@shawnbasquiatUpdated 9 months ago

fetchIpfsPosts1 file match

@stevedylandevUpdated 10 months ago

email-attachment-handlerhandler.ts2 matches

@sorcoroUpdated 44 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