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/$%7Bart_info.art.src%7D?q=api&page=1028&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=api

Returns an array of strings in format "username" or "username/projectName"

Found 11410 results for "api"(1711ms)

myApimain.tsx1 match

@codinginpublic•Updated 1 year ago
1export function myApi(name) {
2 return "hi " + name;
3}

webhook2main.tsx1 match

@sunkid•Updated 1 year ago
3export let webhook2 = (params) => {
4 untitled6313446 = fetch(
5 "https://market-backend.api.2gis.ru/5.0/product/items?q=water&point1=37.87550034485333,51.32652258650344&point2=37.94900977933917,51.293266520365684&locale=ru_RU&page=1&page_size=12&feature_config=categories_without_fake_first_level,range_price_type_supported,from_price_type_supported"
6 ).then((x) => console.log(x));
7};

extractOnThisDayStorymain.tsx1 match

@fab1an•Updated 1 year ago
10 const getOnThisDayContent = async (MM, DD) => {
11 const url =
12 `https://api.wikimedia.org/feed/v1/wikipedia/en/onthisday/all/${MM}/${DD}`;
13 try {
14 const response = await fetch(url);

staleGithubPRsmain.tsx2 matches

@ramkarthik•Updated 1 year ago
11 "headers": {
12 "Authorization": "Bearer " + token,
13 "X-GitHub-Api-Version": "2022-11-28",
14 },
15 };
16 let data = await fetchJSON(
17 `https://api.github.com/repos/${owner}/${repo}/pulls`,
18 options,
19 );

raindropBookmarksmain.tsx1 match

@ramkarthik•Updated 1 year ago
9 };
10 let data = await fetchJSON(
11 "https://api.raindrop.io/rest/v1/raindrops/0?perpage=20&page=" + page,
12 options,
13 );

githubUsermain.tsx1 match

@potherca•Updated 1 year ago
3// Github profile
4export let githubUser = fetchJSON(
5 "https://api.github.com/users/stevekrouse"
6);

myApimain.tsx1 match

@jackbridger•Updated 1 year ago
1export function myApi(name) {
2 return "hi " + name + " want to come on Scaling DevTools?";
3}

polygonDailyAPImain.tsx2 matches

@rwev•Updated 1 year ago
2import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON?v=41";
3
4export async function polygonDailyAPI(ticker, date) {
5 return fetchJSON(
6 `https://api.polygon.io/v1/open-close/${ticker}/${date}?adjusted=true&apiKey=${process.env.POLYGON_API_KEY}`
7 );
8}

githubUsermain.tsx1 match

@bitbloxhub•Updated 1 year ago
3// Github profile
4export let githubUser = fetchJSON(
5 "https://api.github.com/users/stevekrouse"
6);

myApimain.tsx1 match

@dsandler•Updated 1 year ago
1export function myApi(name) {
2 return "hi " + name;
3}

mod-interview-api1 file match

@twschiller•Updated 11 hours ago

daily-advice-app1 file match

@dcm31•Updated 3 days ago
Random advice app using Advice Slip API
apiv1
papimark21