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/$1?q=api&page=55&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 18926 results for "api"(4472ms)

myApi1 file match

@youxam•Updated 1 year ago

myApi1 file match

@refactorized•Updated 1 year ago

myApi1 file match

@douglasdemoura•Updated 1 year ago

myApi1 file match

@ankit411•Updated 1 year ago

myApi1 file match

@joshrcook•Updated 1 year ago

myApi1 file match

@vandyand•Updated 1 year ago

myApi1 file match

@scottmcclung•Updated 1 year ago

myApi1 file match

@elrey741•Updated 1 year ago

myApi1 file match

@jfbouzereau•Updated 1 year ago

myApi1 file match

@elsurudo•Updated 1 year ago

cardamonindex.ts4 matches

@connnolly•Updated 15 mins ago
15await runMigrations();
16
17// API routes
18app.route('/api/recipes', recipesRoutes);
19app.route('/api/parse', parseRoutes);
20
21// Health check endpoint
22app.get('/api/health', (c) => {
23 return c.json({ status: 'ok', timestamp: new Date().toISOString() });
24});

cardamonRecipeView.tsx1 match

@connnolly•Updated 15 mins ago
34 const handleDelete = async () => {
35 try {
36 const response = await fetch(`/api/recipes/${recipe.id}`, {
37 method: 'DELETE'
38 });
apiry
snartapi