Every SEC filing Global-E Online Ltd. (GLBE) has made, as reported on EDGAR — annual and quarterly reports, current reports, insider transactions and ownership disclosures. Filter by form group, form type or period, and open any filing or its index directly.
| # | Form Type | Form Group | Accession | Date | Filing | Index |
|---|---|---|---|---|---|---|
Pull Global-E Online Ltd.'s SEC filing index, with links to every filing and exhibit, into your own tools with the Business Quant SEC Filings API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/secfilings?ticker=GLBE&formtype=10-K,10-Q&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/secfilings"
params = {"ticker": "GLBE", "formtype": "10-K,10-Q", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/secfilings?ticker=GLBE&formtype=10-K,10-Q&api_key=YOUR_API_KEY");
const data = await res.json();