1import { nameList } from "https://esm.town/v/acmu/nameList";
2
3export function myApi() {
4 return nameList;
5}
2
3export let mathFact = fetchText(
4 "http://numbersapi.com/random/math",
5);
1export function myApi(name) {
2 return "hi " + name;
3}
4 try {
5 const response = await fetch(
6 "https://deckofcardsapi.com/api/deck/new/draw/?count=1"
7 );
8 const data = await response.json();
1export function myApi(name) {
2 return "hi " + name;
3}
2
3export let stableDiffusionCreate = async (key, prompt) => {
4 const url = "https://api.replicate.com/v1/predictions";
5 const headers = {
6 Authorization: `Token ${key}`,
1export function myApi(name) {
2 return "hi " + name;
3}
1export function myApi(name) {
2 return "hi " + name;
3}
1export function myApi(name) {
2 return "hi " + name;
3}
3// GitHub followers
4export let githubFollowers = fetchJSON(
5 "https://api.github.com/users/stevekrouse/followers"
6);