curl -H "X-API-Key: gld_your_key" \
"https://api.gildea.ai/v1/signals?entity=NVIDIA&limit=5"
{
"data": [
{
"signal_id": "sig_01JABCDEF123456789",
"title": "NVIDIA H200 Shipments Surge as Supply Eases",
"url": "https://example.com/article",
"published_at": "2026-01-15T10:00:00Z",
"registrable_domain": "example.com",
"content_type": "analysis",
"author": "John Smith",
"decomposition_text": "NVIDIA's H200 shipments increased significantly in Q4 as supply chain constraints eased.",
"tags": {
"value_chain": ["Infrastructure"],
"market_force": ["Competitive Dynamics"]
},
"entities": [
{"entity_id": "org:/nvidia", "name": "NVIDIA", "type": "Organization"}
],
"verified_text_unit_count": 12
}
],
"has_more": true,
"next_cursor": "eyJwdWJsaXNoZWRfYXQiOiIyMDI2LTAxLTE1VDEwOjAwOjAwWiJ9"
}
Retrieve a paginated list of signals. Without filters, returns the most recent signals.
curl -H "X-API-Key: gld_your_key" \
"https://api.gildea.ai/v1/signals?entity=NVIDIA&limit=5"
{
"data": [
{
"signal_id": "sig_01JABCDEF123456789",
"title": "NVIDIA H200 Shipments Surge as Supply Eases",
"url": "https://example.com/article",
"published_at": "2026-01-15T10:00:00Z",
"registrable_domain": "example.com",
"content_type": "analysis",
"author": "John Smith",
"decomposition_text": "NVIDIA's H200 shipments increased significantly in Q4 as supply chain constraints eased.",
"tags": {
"value_chain": ["Infrastructure"],
"market_force": ["Competitive Dynamics"]
},
"entities": [
{"entity_id": "org:/nvidia", "name": "NVIDIA", "type": "Organization"}
],
"verified_text_unit_count": 12
}
],
"has_more": true,
"next_cursor": "eyJwdWJsaXNoZWRfYXQiOiIyMDI2LTAxLTE1VDEwOjAwOjAwWiJ9"
}
analysis or event.Show Signal object
example.com).analysis or event.value_chain and market_force arrays.cursor parameter.curl -H "X-API-Key: gld_your_key" \
"https://api.gildea.ai/v1/signals?entity=NVIDIA&limit=5"
{
"data": [
{
"signal_id": "sig_01JABCDEF123456789",
"title": "NVIDIA H200 Shipments Surge as Supply Eases",
"url": "https://example.com/article",
"published_at": "2026-01-15T10:00:00Z",
"registrable_domain": "example.com",
"content_type": "analysis",
"author": "John Smith",
"decomposition_text": "NVIDIA's H200 shipments increased significantly in Q4 as supply chain constraints eased.",
"tags": {
"value_chain": ["Infrastructure"],
"market_force": ["Competitive Dynamics"]
},
"entities": [
{"entity_id": "org:/nvidia", "name": "NVIDIA", "type": "Organization"}
],
"verified_text_unit_count": 12
}
],
"has_more": true,
"next_cursor": "eyJwdWJsaXNoZWRfYXQiOiIyMDI2LTAxLTE1VDEwOjAwOjAwWiJ9"
}
API key for authentication. Include in every request as X-API-Key: gld_your_key_here.
Filter by canonical entity ID or exact entity name (case-insensitive).
Filter by theme label.
Full-text keyword search.
Filter by content type: 'analysis' or 'event'.
ISO 8601 date — only signals published after this date.
ISO 8601 date — only signals published before this date.
1 <= x <= 50Successful Response