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/...?q=api&page=44&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 19785 results for "api"(2676ms)

valtownOpenAPI2 file matches

@pomdtr•Updated 1 year ago

myApi1 file match

@tmcw_onboarding•Updated 1 year ago

myApi1 file match

@joemccourt•Updated 1 year ago

myApi1 file match

@tychio•Updated 1 year ago

myApi1 file match

@bacondotbuild•Updated 1 year ago

apiExample1 file match

@phelan•Updated 1 year ago

API_URL1 file match

@easrng•Updated 1 year ago

myApi1 file match

@fdterr•Updated 1 year ago

myApi1 file match

@raunakdoesdev•Updated 1 year ago

myApi1 file match

@impedivity•Updated 1 year ago

petitionmain.tsx2 matches

@creativevoicesspeaking•Updated 1 hour ago
88 const recaptchaSecretKey = Deno.env.get("RECAPTCHA_SECRET_KEY");
89 if (recaptchaSecretKey && recaptchaResponse) {
90 const verifyUrl = `https://www.google.com/recaptcha/api/siteverify`;
91 const verifyData = new URLSearchParams({
92 secret: recaptchaSecretKey,
183 additionalScripts = `
184 <!-- Google reCAPTCHA script -->
185 <script src="https://www.google.com/recaptcha/api.js" async defer></script>
186 <script type="text/javascript">
187 // Form validation function to check if captcha is completed

cardamomindex.ts6 matches

@connnolly•Updated 1 hour ago
29
30// Health check endpoint
31app.get('/api/health', async (c) => {
32 try {
33 await initializeDatabase();
39
40// Test endpoint for debugging delete operations
41app.get('/api/test-delete', async (c) => {
42 await initializeDatabase();
43 return c.json({ message: 'Delete test endpoint - check logs for database operations' });
44});
45
46// Mount API routes
47app.route('/api/recipes', recipesApp);
48app.route('/api/parse', parseApp);
49app.route('/api/shopping-lists', shoppingListsApp);
50
51// Serve static files
apiry
snartapi