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=1038&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"(1405ms)

aqimain.tsx1 match

@Exam6918•Updated 1 year ago
4 let pm25 = (
5 await fetchJSON(
6 "https://api.openaq.org/v2/latest?" +
7 new URLSearchParams({
8 limit: "10",

myApimain.tsx1 match

@ayrtonlacerda•Updated 1 year ago
1export function myApi(req, res: express.Response) {
2 return Response.json({ ok: true });
3}

expressHTMLExamplemain.tsx1 match

@octref•Updated 1 year ago
1import { myTestForm } from "https://esm.town/v/octref/myTestForm";
2
3// View at https://api.val.town/v1/express/stevekrouse.expressHTMLExample?name=Steve
4export async function expressHTMLExample(req: express.Request, res: express.Response) {
5 myTestForm.push(req.query.name || req.body.name);

myApimain.tsx1 match

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

githubStarredmain.tsx1 match

@dpointeck•Updated 1 year ago
3// GitHub starred repos
4export let githubStarred = fetchJSON(
5 "https://api.github.com/users/stevekrouse/starred?per_page=10",
6);

myApimain.tsx1 match

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

myApimain.tsx1 match

@wfortin•Updated 1 year ago
1export function myApi(name) {
2 const lastUsedName = name;
3 return "hi " + name;

referencesmain.tsx1 match

@mgruel•Updated 1 year ago
25}): Promise<Reference[]> {
26 const data = await fetchJSON<Reference[]>(
27 "https://api.val.town/v1/me/references?" +
28 searchParams({
29 since: since?.toISOString(),

myApimain.tsx1 match

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

getRandomDogImgmain.tsx1 match

@mutuguangda•Updated 1 year ago
5 res: express.Response,
6) => {
7 const data = await fetch("https://dog.ceo/api/breeds/image/random", {
8 method: "get",
9 redirect: "follow",

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