0

Retrieve a Location

by
Published Oct 17, 2025
Script tomorrow Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
type Tomorrow = {
3
  apiKey: string;
4
};
5
/**
6
 * Retrieve a Location
7
 *
8
 */
9
export async function main(
10
  auth: Tomorrow,
11
  locationId: string,
12
  Accept_Encoding: string,
13
) {
14
  const url = new URL(`https://api.tomorrow.io/v4/locations/${locationId}`);
15

16
  const response = await fetch(url, {
17
    method: "GET",
18
    headers: {
19
      "Accept-Encoding": Accept_Encoding,
20
      ApiKey: auth.apiKey,
21
    },
22
    body: undefined,
23
  });
24
  if (!response.ok) {
25
    const text = await response.text();
26
    throw new Error(`${response.status} ${text}`);
27
  }
28
  return await response.json();
29
}
30