Datasets:
card, license and attribution for release 2026-08-02
Browse files
README.md
CHANGED
|
@@ -115,21 +115,24 @@ trades = knowable.congress_trades(since="2026-01-01", ticker="NVDA")
|
|
| 115 |
The SDK wraps the HTTP contract below, so an SDK query and a direct API query
|
| 116 |
return identical rows.
|
| 117 |
|
| 118 |
-
**
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
|
|
|
| 122 |
|
| 123 |
```
|
| 124 |
GET /v1/{resource}?cursor=&limit=&as_of=
|
| 125 |
-
-> {"data": [...], "next_cursor": str|null,
|
|
|
|
| 126 |
|
| 127 |
resources: congress/trades, house/filings, senate/filings,
|
| 128 |
-
|
| 129 |
```
|
| 130 |
|
| 131 |
-
`as_of` applies the point-in-time bound server-side.
|
| 132 |
-
|
|
|
|
| 133 |
|
| 134 |
## What it covers
|
| 135 |
|
|
|
|
| 115 |
The SDK wraps the HTTP contract below, so an SDK query and a direct API query
|
| 116 |
return identical rows.
|
| 117 |
|
| 118 |
+
**The read API is live at
|
| 119 |
+
<https://knowable-api-production.up.railway.app>.** It serves the verified
|
| 120 |
+
release through one sealed read-only DuckDB connection. The unversioned
|
| 121 |
+
Congress route also carries a small MIT-licensed Kadoa current tail; dated
|
| 122 |
+
release routes remain immutable. Contract:
|
| 123 |
|
| 124 |
```
|
| 125 |
GET /v1/{resource}?cursor=&limit=&as_of=
|
| 126 |
+
-> {"data": [...], "next_cursor": str|null,
|
| 127 |
+
"resume_cursor": str|null, "as_of": timestamp}
|
| 128 |
|
| 129 |
resources: congress/trades, house/filings, senate/filings,
|
| 130 |
+
sec/form4, sec/holdings, coverage
|
| 131 |
```
|
| 132 |
|
| 133 |
+
`as_of` applies the point-in-time bound server-side. Persist `resume_cursor`
|
| 134 |
+
after every non-empty page so a caught-up client does not re-download the same
|
| 135 |
+
short tail. The token is opaque and versioned.
|
| 136 |
|
| 137 |
## What it covers
|
| 138 |
|