Get reasoning and evidence for all companies in a premade strategy
curl --request GET \
--url https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"evidences": [
{
"companyId": "fbf71130-600a-4655-ae5b-6f367d0bbfb2",
"reasoning": "The strategy involves investing in companies that focus on EV manufacturing, battery technology,\nand charging station infrastructure. The excerpts highlight Tesla's involvement in the EV market,\nparticularly its focus on electric vehicles and charging infrastructure,\nwhich aligns with the strategy.\n",
"summaries": [
{
"provider": "Reuters",
"pubDate": 1741774920,
"text": "Tesla is a major player in the Electric Battery Charging Stations market,\nknown for its ultra-fast chargers, including Tesla Superchargers.\nThe company is investing in expanding its charging network.\n"
}
]
}
]
}PremadeStrategies
Get reasoning and evidence for all companies in a premade strategy
GET
/
premade-strategies
/
{strategyId}
/
evidences
Get reasoning and evidence for all companies in a premade strategy
curl --request GET \
--url https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.noonum.ai/v1/premade-strategies/{strategyId}/evidences"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"evidences": [
{
"companyId": "fbf71130-600a-4655-ae5b-6f367d0bbfb2",
"reasoning": "The strategy involves investing in companies that focus on EV manufacturing, battery technology,\nand charging station infrastructure. The excerpts highlight Tesla's involvement in the EV market,\nparticularly its focus on electric vehicles and charging infrastructure,\nwhich aligns with the strategy.\n",
"summaries": [
{
"provider": "Reuters",
"pubDate": 1741774920,
"text": "Tesla is a major player in the Electric Battery Charging Stations market,\nknown for its ultra-fast chargers, including Tesla Superchargers.\nThe company is investing in expanding its charging network.\n"
}
]
}
]
}Authorizations
Enter 'Bearer' followed by a space and then your JWT or API Key.
Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
or Bearer YOUR_API_KEY_HERE
Path Parameters
UUID of the user strategy
Response
Companies in the strategy, each with reasoning and evidence.
Show child attributes
Show child attributes
Was this page helpful?
⌘I