get

/v4/opportunities/{id}/storing-ids

Get the storingId(s) backing an opportunity, grouped by root campaign. Returns one tree per root campaign matching the requested statuses (default LIVE; past root campaigns are excluded). Each node lists its own storingIds, with sub-campaigns nested under subCampaigns. Sub-campaigns of a matching root are not status-filtered. The same storingId may appear in more than one tree. Stateless campaigns return an empty storingIds array.

Path parameters

idstring
required

Query parameters

campaignStatusstringdefault: LIVE

Responses

200
Response for status 200
Schema
object[]
campaignIdstringOn-chain campaign id
storingIdsstring[]Indexing storingId(s) owned by this campaign only (not children's).
subCampaignsany[]Direct sub-campaign nodes; [] for leaves. Always present.
Example
[
  {
    "campaignId": "string",
    "storingIds": [
      "string"
    ],
    "subCampaigns": [
      null
    ]
  }
]
404
Response for status 404
Schema
object
typestring
required
default: "/errors/not-found"
titlestring
required
default: "Not Found"
statusnumber
required
default: 404
detailstring
required
default: "Not Found"
Example
{
  "type": "/errors/not-found",
  "title": "Not Found",
  "status": 404,
  "detail": "Not Found"
}
500
Response for status 500
Schema
object
typestring
required
URI reference identifying the problem type
titlestring
required
Short, stable, human-readable summary
statusnumber
required
HTTP status code
detailstring
required
Human-readable explanation specific to this occurrence
Example
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string"
}
get
https://api.merkl.xyz/v4/opportunities/{id}/storing-ids
Merkl API
curl -X GET "https://api.merkl.xyz/v4/opportunities/{id}/storing-ids"
Fill the required path parameter id to send.