Endpoints / get-contract
Get a single contract
GET
/api/v1/contracts/{id}developerreadFull contract row with weekly prices, regime, and decay signals.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | no | Contract id (e.g. CONT_AWD_...) |
Examples
curl -H "x-api-key: $INTELLIGENCE_API_KEY" \
"https://intelligence-beryl.vercel.app/api/v1/contracts/:id"Responses
200Contract bundle
json
{
"contract": {
"id": "CONT_AWD_N0001925C0070_9700_-NONE-_-NONE-",
"ticker": "LMT",
"recipient_name": "LOCKHEED MARTIN CORPORATION",
"award_date": "2024-11-22",
"contract_value": 3130421242,
"awarding_agency": "Department of Defense",
"nlp_classification": "Defense escalation",
"match_confidence": 1
},
"weekly_prices": [],
"regime": null,
"decay": null
}404Contract not found