You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/$%7Bsuccess?q=fetch&page=15&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=fetch
Returns an array of strings in format "username" or "username/projectName"
Found 14500 results for "fetch"(1179ms)
110};
111112const hubspotResponse = await fetch("https://api.hubapi.com/crm/v3/objects/contacts", {
113method: "POST",
114headers: {
129if (errorData.category === "CONFLICT") {
130// Contact already exists, update it
131const updateResponse = await fetch(`https://api.hubapi.com/crm/v3/objects/contacts/${email}?idProperty=email`, {
132method: "PATCH",
133headers: {
207}
208209const slackResponse = await fetch(slackWebhookUrl, {
210method: "POST",
211headers: {
159formData.append("client_secret", clientSecret);
160161const response = await fetch(url, {
162method: "POST",
163headers: {
200};
201202const response = await fetch(url, {
203method: "POST",
204headers,