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/$%7Burl%7D?q=fetch&page=3&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 8136 results for "fetch"(803ms)

FetchBasic1 file match

@stevekrouse•Updated 5 months ago

cfetch2 file matches

@temptemp•Updated 5 months ago

brooklynWeatherFetcher1 file match

@jjoak3•Updated 5 months ago

fetchNewPublicGitHubRepos1 file match

@toowired•Updated 5 months ago

fetchXML2 file matches

@g000m•Updated 5 months ago

FetchBasic2 file matches

@julesb22•Updated 6 months ago

FetchBasic_deleted_17295039551 file match

@julesb22•Updated 6 months ago

fetchValInfo2 file matches

@pomdtr•Updated 6 months ago

mlbScoreFetcher1 file match

@charmaine•Updated 6 months ago

ThreadmarkLISTFetcher22 file matches

@willthereader•Updated 7 months ago

telegramBotStarterindex.ts1 match

@asdfg•Updated 4 hours ago
354 const botToken = process.env.TELEGRAM_BOT_TOKEN;
355
356 const response = await fetch(`https://api.telegram.org/bot${botToken}/setWebhook`, {
357 method: "POST",
358 headers: { "Content-Type": "application/json" },

telegramBotStartersendTelegramMessage.tsx1 match

@asdfg•Updated 4 hours ago
12 const telegramApiUrl = `https://api.telegram.org/bot${botToken}/sendMessage`;
13
14 const response = await fetch(telegramApiUrl, {
15 method: 'POST',
16 headers: {