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?q=fetch&page=5&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 8149 results for "fetch"(616ms)

fetchJSON2 file matches

@stevekrouse•Updated 10 months ago

fetchJSON1 file match

@maxm•Updated 10 months ago

fetchTodaysNytCxGridAndClues1 file match

@plr•Updated 10 months ago

fetchTodaysNytCxPuzzle1 file match

@plr•Updated 10 months ago

fetchAPI1 file match

@pomdtr•Updated 10 months ago

upload_and_fetch_by_keyvalue_metadata1 file match

@stevedylandev•Updated 10 months ago

fetch_timeout1 file match

@git•Updated 1 year ago

fetchWorker2 file matches

@postpostscript•Updated 1 year ago

insecureFetch2 file matches

@stevekrouse•Updated 1 year ago

fetch_impl_examples2 file matches

@vladimyr•Updated 1 year ago

instagram-toolsfollows-check.jsx4 matches

@julianpera•Updated 1 hour ago
1import makeFetchCookie from "npm:fetch-cookie";
2const fetchCookie = makeFetchCookie(fetch);
3
4export default async function handleCron(interval) {
5 const following = await fetchCookie(
6 "https://www.instagram.com/api/v1/friendships/375942300/following/?query=miguelse10",
7 {
16 const isFollowing = following.users.some((user) => user.username === "miguelse10");
17
18 const pushNotification = await fetchCookie(
19 "https://ntfy.sh/alEMfLpdpoXMe6jB",
20 {

NowPlayingGrabbermain.tsx2 matches

@anthropium•Updated 1 hour ago
12 const basic = Buffer.from(`${client_id}:${client_secret}`).toString("base64");
13
14 const response = await fetch(TOKEN_ENDPOINT, {
15 method: "POST",
16 headers: {
31 const { access_token } = await getAccessToken(client_id, client_secret, refresh_token);
32
33 const response = await fetch(NOW_PLAYING_ENDPOINT, {
34 headers: {
35 Authorization: `Bearer ${access_token}`,