Find premade strategies closest to an objective
curl --request POST \
--url https://api.noonum.ai/v1/premade-strategies/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"objective": "Companies advancing electric vehicles and battery technology."
}
'import requests
url = "https://api.noonum.ai/v1/premade-strategies/search"
payload = { "objective": "Companies advancing electric vehicles and battery technology." }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({objective: 'Companies advancing electric vehicles and battery technology.'})
};
fetch('https://api.noonum.ai/v1/premade-strategies/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.noonum.ai/v1/premade-strategies/search"
payload := strings.NewReader("{\n \"objective\": \"Companies advancing electric vehicles and battery technology.\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"matches": [
{
"similarity": 0.82,
"strategy": {
"id": "83d88f60-f581-4176-bb5c-e0b463d1d442",
"user_id": "auth0-5dba12a5654f067ba1234567",
"name": "Electric Vehicles",
"objective": "The Electric Vehicles Investment Strategy is to identify companies that focus on EV manufacturing,\nplus the development of battery technology and charging station infrastructure.\n",
"created_at": "Sat, 05 Apr 2025 17:43:37 GMT",
"updated_at": "Mon, 07 Apr 2025 18:39:41 GMT",
"public": true,
"growth": 0.1350849124986786,
"status": 100,
"tags": [
"Themes"
],
"exchanges": [
"<string>"
],
"limit": 123,
"min_market_cap": 123,
"max_market_cap": 123,
"min_evidence_count": 123,
"completed": true,
"has_factsheet": true,
"exclusions": [
"<string>"
],
"gics_sectors": [
"83d88f60-f581-4176-bb5c-e0b463d1d442"
],
"metathemes": [
"83d88f60-f581-4176-bb5c-e0b463d1d442"
],
"performance": {
"timeSeries": [
[
123
]
],
"metadata": {
"returns": 123,
"annualizedReturn": 123,
"variance": 123,
"sharpeRatio": 123,
"maxDrawdown": 123,
"stockCount": 123,
"weekCount": 123
}
}
}
}
]
}PremadeStrategies
Find premade strategies closest to an objective
POST
/
premade-strategies
/
search
Find premade strategies closest to an objective
curl --request POST \
--url https://api.noonum.ai/v1/premade-strategies/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"objective": "Companies advancing electric vehicles and battery technology."
}
'import requests
url = "https://api.noonum.ai/v1/premade-strategies/search"
payload = { "objective": "Companies advancing electric vehicles and battery technology." }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({objective: 'Companies advancing electric vehicles and battery technology.'})
};
fetch('https://api.noonum.ai/v1/premade-strategies/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.noonum.ai/v1/premade-strategies/search"
payload := strings.NewReader("{\n \"objective\": \"Companies advancing electric vehicles and battery technology.\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"matches": [
{
"similarity": 0.82,
"strategy": {
"id": "83d88f60-f581-4176-bb5c-e0b463d1d442",
"user_id": "auth0-5dba12a5654f067ba1234567",
"name": "Electric Vehicles",
"objective": "The Electric Vehicles Investment Strategy is to identify companies that focus on EV manufacturing,\nplus the development of battery technology and charging station infrastructure.\n",
"created_at": "Sat, 05 Apr 2025 17:43:37 GMT",
"updated_at": "Mon, 07 Apr 2025 18:39:41 GMT",
"public": true,
"growth": 0.1350849124986786,
"status": 100,
"tags": [
"Themes"
],
"exchanges": [
"<string>"
],
"limit": 123,
"min_market_cap": 123,
"max_market_cap": 123,
"min_evidence_count": 123,
"completed": true,
"has_factsheet": true,
"exclusions": [
"<string>"
],
"gics_sectors": [
"83d88f60-f581-4176-bb5c-e0b463d1d442"
],
"metathemes": [
"83d88f60-f581-4176-bb5c-e0b463d1d442"
],
"performance": {
"timeSeries": [
[
123
]
],
"metadata": {
"returns": 123,
"annualizedReturn": 123,
"variance": 123,
"sharpeRatio": 123,
"maxDrawdown": 123,
"stockCount": 123,
"weekCount": 123
}
}
}
}
]
}Authorizations
Enter 'Bearer' followed by a space and then your JWT or API Key.
Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
or Bearer YOUR_API_KEY_HERE
Body
application/json
Investment objective expressed in natural language.
Example:
"Companies advancing electric vehicles and battery technology."
Response
200 - application/json
Premade strategies closest to the objective.
Matching strategies, ordered from most to least similar.
Show child attributes
Show child attributes
Was this page helpful?
⌘I