Back to APIs list

Google Sheets API examples & templates

Use these vals as a playground to view and fork Google Sheets API examples and templates on Val Town. Run any example below or find templates that can be used as a pre-built solution.
olifrah avatar
olifrah
lastlogin
Script
Forked from stevekrouse/lastlogin
0
rawwerks avatar
rawwerks
simpleLogin
HTTP
Forked from yawnxyz/simpleLogin
0
all avatar
all
creativeTomatoSailfish
HTTP
@jsxImportSource https://esm.sh/react@18.2.0
0
debbie avatar
debbie
forwarder
Email
Forked from stevekrouse/forwarder
0
yawnxyz avatar
yawnxyz
orangeVole
HTTP
An interactive, runnable TypeScript val by yawnxyz
0
andybak avatar
andybak
unicodeToSVG
HTTP
An interactive, runnable TypeScript val by andybak
1
naveenachyuta avatar
naveenachyuta
cerebras_coder
HTTP
Forked from stevekrouse/cerebras_coder
0
stevekrouse avatar
stevekrouse
lastlogin
Script
Forked from pomdtr/lastlogin
5
dthyresson avatar
dthyresson
airportCodeMapRedirector
HTTP
IATA Airport Code Map Redirector I needed way redirect to a map for a given aiport given an IATA airport code . This way is it's a simple proxy redirect and I can change if I want to use Google Maps or another service (or change zoom levels, etc) without having to update the link. Usage: Boston Logan: https://iata.thyresson.io?q=bos
0
sirdrope avatar
sirdrope
DownTime
Cron
Forked from andreterron/isMyWebsiteDown
0
iamseeley avatar
iamseeley
reactServer
HTTP
🌐 React Client-side rendering Server
0
vishu44 avatar
vishu44
loyalOrangeCanidae
HTTP
Forked from vishu44/reverentAquaCuckoo
0
stevekrouse avatar
stevekrouse
newUserWelcomeEmail
HTTP
Todos [ ] write a readme [ ] change this val's name, and update the clerk webhook
2
nbbaier avatar
nbbaier
saveToTana
Script
Save To Tana This val provides a function saveToTana allows the creation of nodes in Tana via their Input API . The parameters are as follows: Token: to access the Tana Input API, you must pass an API token to the function. Obtain an API token from the Tana app and save it as a secret in Val Town. Node: the node that is created within Tana is passed as the second argument and must conform to the shape of an Input API node (see the documentation on github for details. Target node: optionally, you can specify a specific target node by passing a node ID to the function as it's third argument. Example Usage One way to use this val is with a web endpoint that you can send data to to have parsed and submitted to Tana as a specific type of node. For example, this val import { saveToTana } from "https://esm.town/v/nbbaier/saveToTana"; import { APIPlainNode } from "https://esm.town/v/nbbaier/tanaTypes"; import { Hono } from "npm:hono"; const token = Deno.env.get("tanaInputAPI"); export const honoTanaEndpoint = async (req: Request) => { const app = new Hono(); app.get("/", async c => { let { text, url } = c.req.query(); const payload: APIPlainNode = { name: text, children: [ { type: "field", attributeId: "cwi23sOzRSh8", children: [ { dataType: "url", name: url, }, ], }, ], supertags: [], }; const newNode = await saveToTana(token, payload); return c.json({ newNode }); }); return app.fetch(req); }; Combined with a Chrome extension like Rich URL , the above val allows one to send selected text on a page along with that pages URL to Tana via the val's public GET endpoint.
0
nwcphd avatar
nwcphd
dream_interpreter
Cron
Forked from horatiothomas/dream_interpreter
0
vawogbemi avatar
vawogbemi
notUber
HTTP
notUber -- It's kinda like Lyft I built this as part of a larger project, as well a demo. The stack consists of Clerk for Auth, InstantDB for my database, and the Google maps api for maps and routing etc. All the vals are located here . Getting Started Fork all the vals, the link is here . Refactors the imports so they're importing from your vals and not this val. Visit Clerk , InstantDB , Google maps api and create accounts and get ur api keys. Enter your api Keys into your notUberConsts and notUberMapComponent vals. Follow me on X . THIS IS THE MOST IMPORTANT STEP. Please questions or give feedback!
0