You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/$%7Burl%7D?q=image&page=10&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=image
Returns an array of strings in format "username" or "username/projectName"
Found 6336 results for "image"(690ms)
2import deleteCreation from "./deleteCreation";
3import getCreation from "./getCreation";
4import getCreationImage from "./getCreationImage";
5import getCreations from "./getCreations";
6import updateTable from "./updateTable";
15case "/get-creation":
16return getCreation(req);
17case "/get-creation-image":
18return getCreationImage(req);
19case "/get-creations":
20return getCreations(req);
1112See all 3 in action👇
13
1415### 1. PR Auto-Assign
5354See this in action👇
55
5657