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/%7BaudioUrl%7D?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 19093 results for "fetch"(1802ms)

testWeatherFetcher1 file match

@sjaskeprut•Updated 2 months ago

weatherFetcher1 file match

@sjaskeprut•Updated 2 months ago

FetchBasic2 file matches

@ther•Updated 3 months ago

GithubPRFetcher

@andybak•Updated 3 months ago

proxiedfetch1 file match

@jayden•Updated 3 months ago

fetch-socials4 file matches

@welson•Updated 3 months ago
fetch and archive my social posts

fetchRssForSubcurrent2 file matches

@ashryanio•Updated 3 months ago

fetch_template2 file matches

@gwoods22•Updated 3 months ago

HN-fetch-call3 file matches

@ImGqb•Updated 3 months ago
fetch HackerNews by API

FRAMERFetchBasic1 file match

@bresnik•Updated 3 months ago

manifoldHttpmain.ts7 matches

@dcm31•Updated 47 mins ago
23 e.preventDefault();
24 setResult(null);
25 const res = await fetch("/analyze", {
26 method: "POST",
27 headers: { "content-type": "application/json" },
36 setStatus("Placing bets...");
37
38 const res = await fetch("/betAll", {
39 method: "POST",
40 headers: { "content-type": "application/json" },
133
134 const apiUrl = `https://manifold.markets/api/v0/slug/${slug}`;
135 const res = await fetch(apiUrl);
136 if (!res.ok) return new Response(`Failed to fetch market: ${res.statusText}`, { status: 500 });
137
138 const data = await res.json();
157
158 const apiUrl = `https://manifold.markets/api/v0/slug/${slug}`;
159 const res = await fetch(apiUrl);
160 if (!res.ok) return new Response(`Failed to fetch market: ${res.statusText}`, { status: 500 });
161
162 const data = await res.json();
167 const results: any[] = [];
168 for (const ans of data.answers) {
169 const betRes = await fetch("https://manifold.markets/api/v0/bet", {
170 method: "POST",
171 headers: {

manifoldSummain.ts2 matches

@dcm31•Updated 55 mins ago
5
6 const apiUrl = `https://manifold.markets/api/v0/slug/${slug}`;
7 const res = await fetch(apiUrl);
8 if (!res.ok) throw new Error(`Failed to fetch market: ${res.statusText}`);
9 const data = await res.json();
10