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=20&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 19573 results for "api"(6142ms)

myApi1 file match

@emohamed•Updated 1 year ago

myApi1 file match

@itsfiggers•Updated 1 year ago

myApi1 file match

@jmelis•Updated 1 year ago

myApi1 file match

@markm247•Updated 1 year ago

myApi1 file match

@fdurham•Updated 1 year ago

myApi1 file match

@conanak99•Updated 1 year ago

myApi1 file match

@cganoo•Updated 1 year ago

myApi1 file match

@gugge•Updated 1 year ago

myApi1 file match

@amirmasoudabdol•Updated 1 year ago

myApi1 file match

@charlesfrisbee•Updated 1 year ago

tuempresaValidationCatalogGrok.tsx2 matches

@arequipe•Updated 22 mins ago
11 }
12
13 // Inicializar cliente de Airtable con credenciales (API key y base definidas en Deno.env):contentReference[oaicite:3]{index=3}
14 const airtable = new Airtable({
15 apiKey: Deno.env.get("AIRTABLE_API_KEY") || "",
16 baseId: Deno.env.get("AIRTABLE_BASE_ID") || "",
17 tableName: Deno.env.get("AIRTABLE_TABLE_NAME") || "",

Townieindex.ts9 matches

@valdottown•Updated 47 mins ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getCreditAdditions } from "./api/credit-additions.ts";
3import { handleApiRequest } from "./api/index.ts";
4import { getInferenceCalls } from "./api/inference-calls.ts";
5import {
6 getInferenceCallsForRequest,
8 getRequestById,
9 getRequests,
10} from "./api/requests.ts";
11import { getUserSummary } from "./api/user-summary.ts";
12import { getValSummary } from "./api/val-summary.ts";
13import { basicAuthMiddleware } from "./auth.ts";
14import { renderCreditAdditions } from "./views/credit-additions.ts";
31});
32
33// API routes
34app.all("/api/*", async (c) => {
35 return handleApiRequest(c.req.raw);
36});
37
Kapil01
apiv1