European short selling API

Integrate publicly disclosed net short positions from European regulators via JSON endpoints

API

Integrate net short position data from European regulators

Use a paid ShortsInsights subscription with API access to query issuer metadata and publicly disclosed net short positions in JSON—sourced from official national competent authority publications, consolidated in one dataset.

  • Stable ShortsInsights issuer ids for lookups and integrations
  • List issuers and fetch active or historical disclosed positions as JSON
  • Bearer API keys; documented rate limits for production use

Documented limits include 100 requests per minute and 1000 requests per day per key (see technical docs).

New to the product? Open the dashboard or read the FAQ.

API request

Bearer auth · JSON responses

live data

Example

curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.shortsinsights.com/issuers/si_issuer_id/positions?status=active"

Response

{
  "issuer_id": "si_issuer_id",
  "issuer_name": "ADYEN NV",
  "status": "active",
  "positions": [
    {
      "position_holder": "Capital Fund Management SA",
      "position": 0.57,
      "position_date": "2026-04-21"
    }
  ]
}