You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/$2?q=api&page=66&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=api
Returns an array of strings in format "username" or "username/projectName"
Found 15445 results for "api"(1590ms)
11// Initialize Notion client
12export const notion = new Client({
13auth: Deno.env.get("NOTION_API_KEY"),
14});
15
3// Initialize Notion client
4const notion = new Client({
5auth: Deno.env.get("NOTION_API_KEY"),
6});
7