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=11&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 18991 results for "api"(2431ms)

strivingSilverTapir1 file match

@dcm31•Updated 8 months ago

api

@romanewmedia•Updated 8 months ago

pageSpeedAPI1 file match

@eligosmlytics•Updated 8 months ago

getAirtableDataAPI1 file match

@stnkvcs•Updated 8 months ago

stockAPI2 file matches

@pete•Updated 8 months ago

arenaApiExample2 file matches

@deblina•Updated 8 months ago

smallweb_openapi_guide2 file matches

@all•Updated 8 months ago

smallweb_openapi1 file match

@pomdtr•Updated 8 months ago

addNumbersAPI

@rororowyourboat•Updated 8 months ago

openapi_playground2 file matches

@stainless_em•Updated 9 months ago

honeydewmain.tsx6 matches

@legal•Updated 11 mins ago
91 <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Honeydew</title>
92 <style> 
93 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Inter:wght@400&display=swap'); 
94 @keyframes spin{to{transform:rotate(360deg)}}
95 @keyframes slide-in-bounce {
224 <script> 
225 (function() {
226  const API_URL = '${sourceUrl}'; 
227  const STORE_KEYS = { projects: 'honeydew_projects_v1', tasks: 'honeydew_tasks_v1', theme: 'honeydew_theme_v1' }; 
228  let projects = [], tasks = [], activeView = 'today', conversationHistory = []; 
429
430    try { 
431      const res = await fetch(\`\${API_URL}?action=chat\`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ messages: conversationHistory.slice(0, -1), tasks, projects }) }); 
432      const data = await res.json(); 
433      if (!res.ok || data.error) throw new Error(data.error || 'Server error'); 
524    toggleLoading(btn, true); 
525    try { 
526      const res = await fetch(\`\${API_URL}?action=synthesizeProject\`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ goal }) }); 
527      const data = await res.json(); 
528      if (!res.ok || data.error) throw new Error(data.error || "Server error"); 
542    toggleLoading(btn, true); 
543    try { 
544      const res = await fetch(\`\${API_URL}?action=dailyRebalance\`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ tasks: todayTasks }) }); 
545      const data = await res.json(); 
546      if (!res.ok || data.error) throw new Error(data.error || "Server error"); 
772 }
773 } catch (error) {
774 console.error("AI API Error:", error);
775 return new Response(
776 JSON.stringify({ error: error.message || "An unknown error occurred with the AI service." }),

girocodeindex.ts1 match

@fxfr•Updated 3 hours ago
76 </head>
77 <body>
78 <h1>QR Code Generator API</h1>
79 <h2>Usage</h2>
80 <p>Generate QR codes for payment information using GET parameters:</p>
apiry
snartapi