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=18&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"(1330ms)

fetchRss2 file matches

@pdebieUpdated 1 year ago

proxyFetch42 file matches

@alpUpdated 1 year ago

fetchJSON1 file match

@dverginUpdated 1 year ago

fetchBcycleCounts1 file match

@jonboUpdated 1 year 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