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/image-url.jpg%20%22Image%20title%22?q=fetch&page=9&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 18976 results for "fetch"(901ms)

fetchNewPublicGitHubRepos2 file matches

@stevekrouse•Updated 1 year ago

fetch_docs2 file matches

@andreterron•Updated 1 year ago

fetch2 file matches

@vladimyr•Updated 1 year ago

fetch_example22 file matches

@vladimyr•Updated 1 year ago

fetch_example2 file matches

@vladimyr•Updated 1 year ago

fetch2 file matches

@std•Updated 1 year ago

fetchNewestVals1 file match

@vladimyr•Updated 1 year ago

fetchVal1 file match

@vladimyr•Updated 1 year ago

fetchText2 file matches

@vladimyr•Updated 1 year ago

fetchJSON2 file matches

@vladimyr•Updated 1 year ago

euro-aipparse.ts1 match

@orionll•Updated 1 hour ago
69
70export async function parseAIP(url: string): Promise<AerodromeData> {
71 const res = await fetch(url);
72 const html = await res.text();
73 const dom = new JSDOM(html);

cronemain.ts1 match

@jrmann100•Updated 1 hour ago
31app.post("/api/interactions", verify, handleInteraction);
32
33export default app.fetch;
34