Readme

GET /v1/vals/{val_id}/versions/{version}

Returns information about a specific version of a val.

To access private vals this requires a secret called valtownToken, set to your API Token. See more about authentication to understand how to generate a token.

1
2
3
4
5
6
7
8
9
10
11
12
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON?v=43";
console.log(
await fetchJSON(
`https://api.val.town/v1/vals/1f32d4c1-332e-4135-889f-8df408924a9d/versions/1`,
{
headers: {
authorization: `Bearer ${Deno.env.get("valtown")}`,
},
},
),
);
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
March 20, 2024