googleGeminiAPI2 file matches
Request validator for clearance API
Apiify11 file matches
Daily Quote API
HAPI7 file matches
Schedule_api
You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/?q=api&page=4&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 21050 results for "api"(3288ms)
2177<meta name="viewport" content="width=device-width, initial-scale=1">
2178<meta charset="UTF-8">
2179<link rel="preconnect" href="https://fonts.googleapis.com">
2180<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
2181<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Open+Sans:wght@400;500&display=swap" rel="stylesheet">
2182<style>
2183body {
215const SEVEN_NOTE_FORM = [0, 3, 6, 8, 10, 12, 14];
216const SINGLE_LINE_HEIGHT_PX = 150;
217const API_ENDPOINT = 'generate';
218219// --- DOM ELEMENTS ---
352}
353try {
354const response = await fetch(API_ENDPOINT, { method: 'POST' });
355if (!response.ok) throw new Error(\`Server responded with \${response.status}\`);
356const data = await response.json();