curl --request GET \
--url https://app.uselamina.ai/v1/intelligence/recommendations \
--header 'x-api-key: <api-key>'import requests
url = "https://app.uselamina.ai/v1/intelligence/recommendations"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://app.uselamina.ai/v1/intelligence/recommendations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.uselamina.ai/v1/intelligence/recommendations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.uselamina.ai/v1/intelligence/recommendations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.uselamina.ai/v1/intelligence/recommendations")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.uselamina.ai/v1/intelligence/recommendations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "rec-001",
"type": "trend_opportunity",
"status": "open",
"priority": 1,
"title": "Capitalize on 'quiet luxury' trend for Instagram",
"summary": "The 'quiet luxury' aesthetic is trending +45% this week. Your brand's minimalist identity is a natural fit.",
"data": {
"trendSignal": "quiet luxury",
"trendGrowth": "+45%",
"suggestedPlatform": "instagram",
"suggestedModality": "image"
},
"createdAt": "2026-04-15T08:00:00.000Z"
},
{
"id": "rec-002",
"type": "gap_analysis",
"status": "open",
"priority": 2,
"title": "No video content published in 14 days",
"summary": "Video content historically drives 2.3x engagement for your brand. Consider creating short-form video.",
"data": {
"daysSinceLastVideo": 14,
"videoEngagementMultiplier": 2.3
},
"createdAt": "2026-04-14T12:00:00.000Z"
}
]
}{
"error": "Invalid API key"
}"Too many requests from this IP, please try again in a minute"Get Recommendations
List open content recommendations for the workspace. Recommendations are generated by the Content Intelligence Engine based on brand context, trend signals, and historical performance data.
Each recommendation includes a type (e.g. trend_opportunity, gap_analysis,
optimization), priority level, title, summary, and a data object with
structured details.
Use recommendations to surface actionable content ideas for agents or
human creators. Combine with POST /v1/content/create to act on a
recommendation by passing its details as the content brief.
curl --request GET \
--url https://app.uselamina.ai/v1/intelligence/recommendations \
--header 'x-api-key: <api-key>'import requests
url = "https://app.uselamina.ai/v1/intelligence/recommendations"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://app.uselamina.ai/v1/intelligence/recommendations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.uselamina.ai/v1/intelligence/recommendations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.uselamina.ai/v1/intelligence/recommendations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.uselamina.ai/v1/intelligence/recommendations")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.uselamina.ai/v1/intelligence/recommendations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "rec-001",
"type": "trend_opportunity",
"status": "open",
"priority": 1,
"title": "Capitalize on 'quiet luxury' trend for Instagram",
"summary": "The 'quiet luxury' aesthetic is trending +45% this week. Your brand's minimalist identity is a natural fit.",
"data": {
"trendSignal": "quiet luxury",
"trendGrowth": "+45%",
"suggestedPlatform": "instagram",
"suggestedModality": "image"
},
"createdAt": "2026-04-15T08:00:00.000Z"
},
{
"id": "rec-002",
"type": "gap_analysis",
"status": "open",
"priority": 2,
"title": "No video content published in 14 days",
"summary": "Video content historically drives 2.3x engagement for your brand. Consider creating short-form video.",
"data": {
"daysSinceLastVideo": 14,
"videoEngagementMultiplier": 2.3
},
"createdAt": "2026-04-14T12:00:00.000Z"
}
]
}{
"error": "Invalid API key"
}"Too many requests from this IP, please try again in a minute"Authorizations
Workspace API key. Prefix: lma_. Example: lma_abc123...
Query Parameters
Filter recommendations to a specific campaign.
Filter recommendations to a specific workflow/app.
Filter recommendations to a specific brand profile.
Filter by target platform.
Filter by content objective.
Filter by content modality.
Maximum number of recommendations to return.
x <= 100Response
List of open content recommendations
Show child attributes
Show child attributes