Retrieve an opportunity
GET/v1/opportunities/{id}
Retrieves a single opportunity by its ID.
Required scope: opportunities:read
Rate limit category: Read
Path Parameters
id: string
Unique identifier of the opportunity to retrieve.
Returns
Retrieve an opportunity
curl https://api.lightfield.app/v1/opportunities/$ID \
-H 'Lightfield-Version: 2026-03-01' \
-H "Authorization: Bearer $API_KEY"{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink",
"relationships": {
"foo": {
"cardinality": "cardinality",
"objectType": "objectType",
"values": [
"string"
]
}
}
}Returns Examples
{
"id": "id",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink",
"relationships": {
"foo": {
"cardinality": "cardinality",
"objectType": "objectType",
"values": [
"string"
]
}
}
}