chocolateDovemain.tsx1 match
4async function fetchRandomJoke() {
5const response = await fetch(
6"https://official-joke-api.appspot.com/random_joke",
7);
8return response.json();
dailyDadJokemain.tsx1 match
34export async function dailyDadJoke() {
5let { setup, punchline } = await fetchJSON("https://official-joke-api.appspot.com/random_joke");
6return email({
7text: punchline,
sapphireHummingbirdmain.tsx1 match
4async function fetchRandomJoke() {
5const response = await fetch(
6"https://official-joke-api.appspot.com/random_joke",
7);
8return response.json();
azureBasiliskmain.tsx1 match
3async function fetchRandomJoke() {
4const response = await fetch(
5"https://official-joke-api.appspot.com/random_joke",
6);
7return response.json();
bookReservationOnResymain.tsx7 matches
30}) => {
31const { z } = await import("npm:zod");
32const RESY_API_URL = "https://api.resy.com";
33const RESY_DEFAULT_HEADERS = {
34accept: "application/json, text/plain, */*",
35"accept-encoding": "gzip, deflate, br",
36"accept-language": "en-US,en;q=0.9",
37authorization: "ResyAPI api_key=\"VbWk7s3L4KiK5fzlO7JD3Q5EYolJI7n5\"",
38"x-origin": "https://resy.com",
39origin: "https://resy.com/",
145)
146}&password=${encodeURIComponent(params.password)}`;
147const response = await fetch(`${RESY_API_URL}/3/auth/password`, {
148method: "POST",
149body: body,
166seats: number;
167}) => {
168const url = `${RESY_API_URL}/3/details`;
169const response = await fetch(url.toString(), {
170method: "POST",
185seats: number;
186}) => {
187const url = `${RESY_API_URL}/4/find`;
188const searchParams = new URLSearchParams();
189searchParams.set("lat", "0");
208city: string;
209}) => {
210const url = `${RESY_API_URL}/3/venue`;
211const searchParams = new URLSearchParams();
212searchParams.set("url_slug", params.slug);
224authToken: string;
225}) => {
226const response = await fetch(`${RESY_API_URL}/3/book`, {
227method: "POST",
228headers: {
SampleJokemain.tsx1 match
4async function fetchRandomJoke() {
5const response = await fetch(
6"https://official-joke-api.appspot.com/random_joke",
7);
8return response.json();
tomatoSolemain.tsx1 match
9async function fetchRandomJoke() {
10const response = await fetch(
11"https://official-joke-api.appspot.com/random_joke",
12);
13return response.json();
dailyDadJokeREADME.md2 matches
113. 🤣🤣🤣🤣
1213## API
1415This val uses the [icanhazdadjoke API](https://icanhazdadjoke.com/api). You can find [more docs here](https://github.com/15Dkatz/official_joke_api), such as how to [filter by type](https://github.com/15Dkatz/official_joke_api?tab=readme-ov-file#grab-jokes-by-type).
goldRattlesnakemain.tsx1 match
6async function fetchRandomJoke() {
7const response = await fetch(
8"https://official-joke-api.appspot.com/random_joke",
9);
10return response.json();
1Migrated from folder: Web_Scraping/extract_opengraph_data