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/image-url.jpg%20%22Optional%20title%22?q=api&page=78&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 12728 results for "api"(1089ms)

16
17/**
18 * Simplified proof-of-concept function to test API connectivity
19 * This should return an immediate result we can inspect
20 */
33
34 try {
35 log("Starting API test with Airtable");
36
37 // Test the most basic API call to verify connectivity
38 const testUrl = `https://api.airtable.com/v0/${BASE_ID}/${TABLE_NAME}?maxRecords=1`;
39 log("Testing connection with URL", testUrl);
40
44 // First test - just check if we can connect at all
45 const testResponse = await fetch(testUrl, { headers });
46 log(`API response status: ${testResponse.status} ${testResponse.statusText}`);
47
48 if (!testResponse.ok) {
49 const errorText = await testResponse.text();
50 log("API Error", errorText);
51 throw new Error(`API Error: ${testResponse.status} - ${errorText}`);
52 }
53
57
58 // Now try with the view specified
59 const viewUrl = `https://api.airtable.com/v0/${BASE_ID}/${TABLE_NAME}?view=${VIEW_NAME}&maxRecords=1`;
60 log("Testing with view specified", viewUrl);
61
62 const viewResponse = await fetch(viewUrl, { headers });
63 log(`View API response status: ${viewResponse.status} ${viewResponse.statusText}`);
64
65 if (!viewResponse.ok) {
66 const errorText = await viewResponse.text();
67 log("View API Error", errorText);
68 throw new Error(`View API Error: ${viewResponse.status} - ${errorText}`);
69 }
70
76
77 // If we got here, we can fetch records successfully
78 log("API connectivity test successful");
79
80 return {
81 success: true,
82 message: "API connectivity test successful",
83 logs: debugLog,
84 firstRecord: viewJson.records && viewJson.records[0] ? viewJson.records[0] : null,

mandateworkflowDefinition.ts1 match

@salonUpdated 4 days ago
83 },
84 config: { // Example of static config for a step, if fetchAgent could use it
85 "static_api_key": "ui-test-fetch-key",
86 "item_limit_from_initial": { source: "initial", field: "itemCount" } // Note: Engine currently doesn't resolve sources in step.config
87 },
30 do {
31 // Using view ID in the URL
32 const url = `https://api.airtable.com/v0/${BASE_ID}/${TABLE_NAME}?view=${VIEW_NAME}&pageSize=100${
33 offset ? `&offset=${offset}` : ""
34 }`;
42 if (!res.ok) {
43 const errorText = await res.text();
44 console.error(`API Error (${res.status}): ${errorText}`);
45 throw new Error(`Airtable API error: ${res.status} - ${errorText}`);
46 }
47

MiniAppStarterneynar.ts2 matches

@kashiUpdated 4 days ago
1const baseUrl = "https://api.neynar.com/v2/farcaster/";
2
3export async function fetchNeynarGet(path: string) {
7 "Content-Type": "application/json",
8 "x-neynar-experimental": "true",
9 "x-api-key": "NEYNAR_API_DOCS",
10 },
11 });

MiniAppStarterindex.tsx2 matches

@kashiUpdated 4 days ago
19 }));
20
21app.get("/api/counter/get", async c => c.json(await db.get("counter")));
22app.get("/api/counter/increment", async c => c.json(await db.set("counter", (await db.get("counter") || 0) + 1)));
23
24app.get("/frontend/**/*", c => serveFile(c.req.path, import.meta.url));

MiniAppStarterimage.tsx3 matches

@kashiUpdated 4 days ago
84
85const loadEmoji = (code) => {
86 // const api = `https://cdnjs.cloudflare.com/ajax/libs/twemoji/14.0.2/svg/${code.toLowerCase()}.svg`
87 const api = `https://cdn.jsdelivr.net/gh/shuding/fluentui-emoji-unicode/assets/${code.toLowerCase()}_color.svg`;
88 return fetch(api).then((r) => r.text());
89};
90

MiniAppStarterApp.tsx3 matches

@kashiUpdated 4 days ago
53 <div className="">✷ Farcaster mini app manifest + webhook + embed metadata</div>
54 <div className="">✷ Farcaster notifications (storing tokens, sending recurring notifications, ...)</div>
55 <div className="">✷ Neynar API integration for Farcaster data</div>
56 <div className="">✷ Hosted on Val Town (instant deployments on save)</div>
57 <div className="">
67
68function Database() {
69 const queryFn = () => fetch("/api/counter/get").then((r) => r.json());
70 const { data, refetch } = useQuery({ queryKey: ["counter"], queryFn });
71 return (
73 {/* <h2 className="font-semibold">Database Example</h2> */}
74 <div className="">Counter value: {data}</div>
75 <Button variant="outline" onClick={() => fetch("/api/counter/increment").then(refetch)}>
76 Increment
77 </Button>

roseysendDailyBrief.ts8 matches

@avniUpdated 4 days ago
97
98export async function sendDailyBriefing(chatId?: string, today?: DateTime) {
99 // Get API keys from environment
100 const apiKey = Deno.env.get("ANTHROPIC_API_KEY");
101 const telegramToken = Deno.env.get("TELEGRAM_TOKEN");
102
106 }
107
108 if (!apiKey) {
109 console.error("Anthropic API key is not configured.");
110 return;
111 }
122
123 // Initialize Anthropic client
124 const anthropic = new Anthropic({ apiKey });
125
126 // Initialize Telegram bot
162
163 // disabled title for now, it seemes unnecessary...
164 // await bot.api.sendMessage(chatId, `*${title}*`, { parse_mode: "Markdown" });
165
166 // Then send the main content
169
170 if (content.length <= MAX_LENGTH) {
171 await bot.api.sendMessage(chatId, content, { parse_mode: "Markdown" });
172 // Store the briefing in chat history
173 await storeChatMessage(
198 // Send each chunk as a separate message and store in chat history
199 for (const chunk of chunks) {
200 await bot.api.sendMessage(chatId, chunk, { parse_mode: "Markdown" });
201 // Store each chunk in chat history
202 await storeChatMessage(

roseyREADME.md1 match

@avniUpdated 4 days ago
53You'll need to set up some environment variables to make it run.
54
55- `ANTHROPIC_API_KEY` for LLM calls
56- You'll need to follow [these instructions](https://docs.val.town/integrations/telegram/) to make a telegram bot, and set `TELEGRAM_TOKEN`. You'll also need to get a `TELEGRAM_CHAT_ID` in order to have the bot remember chat contents.
57- For the Google Calendar integration you'll need `GOOGLE_CALENDAR_ACCOUNT_ID` and `GOOGLE_CALENDAR_CALENDAR_ID`. See [these instuctions](https://www.val.town/v/stevekrouse/pipedream) for details.

roseyREADME.md5 matches

@avniUpdated 4 days ago
8## Hono
9
10This app uses [Hono](https://hono.dev/) as the API framework. You can think of Hono as a replacement for [ExpressJS](https://expressjs.com/) that works in serverless environments like Val Town or Cloudflare Workers. If you come from Python or Ruby, Hono is also a lot like [Flask](https://github.com/pallets/flask) or [Sinatra](https://github.com/sinatra/sinatra), respectively.
11
12## Serving assets to the frontend
20### `index.html`
21
22The most complicated part of this backend API is serving index.html. In this app (like most apps) we serve it at the root, ie `GET /`.
23
24We *bootstrap* `index.html` with some initial data from the server, so that it gets dynamically injected JSON data without having to make another round-trip request to the server to get that data on the frontend. This is a common pattern for client-side rendered apps.
25
26## CRUD API Routes
27
28This app has two CRUD API routes: for reading and inserting into the messages table. They both speak JSON, which is standard. They import their functions from `/backend/database/queries.ts`. These routes are called from the React app to refresh and update data.
29
30## Errors
31
32Hono and other API frameworks have a habit of swallowing up Errors. We turn off this default behavior by re-throwing errors, because we think most of the time you'll want to see the full stack trace instead of merely "Internal Server Error". You can customize how you want errors to appear.

vapi-minutes-db1 file match

@henrywilliamsUpdated 19 hours ago

vapi-minutes-db2 file matches

@henrywilliamsUpdated 21 hours ago
socialdata
Affordable & reliable alternative to Twitter API: ➡️ Access user profiles, tweets, followers & timeline data in real-time ➡️ Monitor profiles with nearly instant alerts for new tweets, follows & profile updates ➡️ Simple integration
artivilla
founder @outapint.io vibe coding on val.town. dm me to build custom vals: https://artivilla.com