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=6&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"(3231ms)

FetchBasic1 file match

@huntyUpdated 10 months ago

fetchWikipediaContent2 file matches

@pmoUpdated 10 months ago

Fetch2 file matches

@komolkinUpdated 10 months ago

Fetch2 file matches

@huntyUpdated 10 months ago

fetchCongressTradeReports1 file match

@tricksterUpdated 11 months ago

fetchJSON2 file matches

@stevekrouseUpdated 11 months ago

fetchJSON1 file match

@maxmUpdated 11 months ago

fetchTodaysNytCxGridAndClues1 file match

@plrUpdated 1 year ago

fetchTodaysNytCxPuzzle1 file match

@plrUpdated 1 year ago

fetchAPI1 file match

@pomdtrUpdated 1 year ago

email-attachment-handlerhandler.ts2 matches

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