# Mostly Right Mostly Right publishes open, machine-readable datasets as immutable Apache Parquet versions: time series, benchmarks and reference data for analysis and machine learning. Every dataset carries a documented column schema, column profiles, an explicit licence and a named publisher. There are three tiers. Reading metadata, schemas and sample rows needs no account, and neither does a bounded query of up to 100 rows a page (POST /api/public/tables/{table_id}/query). Querying a whole table — up to 10000 rows a page, paged to the end — and downloading a full snapshot need a free account and an API key from Settings → Access; the first request connects the dataset to your workspace. Building a new dataset — writing a recipe, running it and publishing the result — needs a paid subscription on that workspace. - Dataset directory: /datasets - Every public dataset and table, in one file: /llms-full.txt - One dataset as Markdown: /datasets/{slug}/llms.txt - Public Dataset API: https://mostlyright.md/docs/reference/public-dataset-api/ - Use a public dataset: https://mostlyright.md/docs/guides/use-public-datasets/ - Quickstart for agents: https://mostlyright.md/docs/guides/for-agents/ - Connect an AI tool with MCP: https://mostlyright.md/docs/guides/mcp/ - MCP server: /api/mcp (server card: /.well-known/mcp.json) - Agent skills: /.well-known/agent-skills/index.json - How to build a dataset: /.well-known/agent-skills/mostlyright-build/SKILL.md - OpenAPI: /api/v2/public/openapi.json Use the traditional HTTP API for application code. GET /api/v2/public/datasets searches the catalogue and needs no key. GET /api/v2/public/tables/{tableId}/schema and GET /api/v2/public/tables/{tableId}/preview need no key. GET /api/v2/public/tables/{tableId}/current returns application/vnd.apache.parquet. POST /api/v2/public/tables/{tableId}/query returns bounded JSON. The last two take a workspace key as x-api-key: mr_use_…. Do not assume arbitrary SQL is available. Agents can use the MCP server at /api/mcp instead: Streamable HTTP, protocol 2025-11-25 (2025-06-18, 2025-03-26 and 2024-11-05 also negotiate), stateless, no session id. Server card: /.well-known/mcp.json. search, fetch, search_datasets, get_dataset, list_tables, get_table_schema, sample_rows, get_download_instructions and get_access_instructions answer with NO credential; search and fetch are the two-tool connector contract, where search returns {id, title, url} per dataset and fetch returns that dataset as Markdown. query_table, catalog_search and list_connected_datasets take a read-only mr_use_ workspace key as Authorization: Bearer, or an OAuth connection. connect_dataset changes the workspace and needs the OAuth connection. catalog_search is a different question from the rest: it searches a sealed snapshot of public data SOURCES — one provider, Data.gov, partially swept — rather than the datasets published here. The same server also builds datasets, on a paid workspace, over an OAuth connection carrying the datasets:build scope: create_dataset, update_dataset, list_my_datasets, get_my_dataset, register_recipe, propose_revision, replay_run, start_run, confirm_run, approve_full_run, cancel_run, get_run, run_events, list_runs, query_run, run_artifacts, get_artifact_download, write_note, promote_table, get_table, diagnose_table, list_source_credentials, normalize_reader_options, start_source_inspection and get_source_inspection. An mr_use_ key cannot build. Source credentials are pasted by a person at /dashboard/settings/secrets and referenced from a recipe by name; no secret passes through MCP. The loop is written out at /.well-known/agent-skills/mostlyright-build/SKILL.md and served as the mostlyright://build-guide resource. Results should cite the dataset, table, immutable version, content digest, and query time. ## Build a dataset Building runs from the command line as well as over MCP. Install it with pip install mostlyright-data, which puts the mr-data command on the path, then run mr-data login once per machine. The first mr-data command of any kind also places the mr-data-build agent skill at ~/.claude/skills/mr-data-build, or under ~/.codex/skills for Codex, and leaves an edited copy alone; MOSTLYRIGHT_SKILL_AUTOINSTALL=0 switches that off. That skill drives the CLI. The MCP build skill is a separate document: /.well-known/agent-skills/index.json lists it, and it is served at /.well-known/agent-skills/mostlyright-build/SKILL.md and as the mostlyright://build-guide resource. ## Documentation Start here. - https://mostlyright.md/docs/ — what Mostly Right builds, and which page to read next. - https://mostlyright.md/docs/start/install/ — install mr-data and sign in. - https://mostlyright.md/docs/start/first-dataset/ — build one dataset end to end. - https://mostlyright.md/docs/start/how-it-works/ — the lifecycle: dataset, recipe, run, sealed table version, refresh. - https://mostlyright.md/docs/guides/for-agents/ — the curl ladder from a catalogue search to a cited result. Build a dataset. - https://mostlyright.md/docs/build/probe-sources/ — ask one source one question before writing a recipe. - https://mostlyright.md/docs/build/write-a-recipe/ — the recipe document, with a complete example. - https://mostlyright.md/docs/build/run-and-inspect/ — run under ceilings, follow the events, read the rows. - https://mostlyright.md/docs/build/publish-and-refresh/ — what a succeeded run publishes, and how refresh cadence is recorded. - https://mostlyright.md/docs/build/credentials/ — store a source credential by name and reference it from a recipe. - https://mostlyright.md/docs/build/live-streams/ — record a public wss venue and build a table from the recording. - https://mostlyright.md/docs/build/collections/ — one source that fans out over many pages. - https://mostlyright.md/docs/build/documents/ — documents and files as rows. - https://mostlyright.md/docs/build/troubleshooting/ — read a failed run and fix what it names. Recipe examples, each one a complete document. - https://mostlyright.md/docs/recipes/ — the index. - https://mostlyright.md/docs/recipes/city-temperatures/ — daily city temperatures. - https://mostlyright.md/docs/recipes/csv-snapshot/ — one CSV file to one table. - https://mostlyright.md/docs/recipes/json-api/ — a JSON API with a records pointer and pagination. - https://mostlyright.md/docs/recipes/html-collection/ — many HTML pages to one table. - https://mostlyright.md/docs/recipes/document-extraction/ — a PDF or other document projected into rows. - https://mostlyright.md/docs/recipes/weather-grib/ — weather GRIB2 through the scientific reader. - https://mostlyright.md/docs/recipes/websocket-stream/ — a WebSocket venue to a stream table. - https://mostlyright.md/docs/recipes/multi-source-join/ — two sources joined, with checks. - https://mostlyright.md/docs/recipes/market-settlement-join/ — settlement rules from two prediction venues joined on one event. - https://mostlyright.md/docs/recipes/forecast-vs-observation/ — a weather forecast joined to the observation it predicted. - https://mostlyright.md/docs/recipes/snapshot-window/ — a listing replaced as one snapshot on each refresh. - https://mostlyright.md/docs/recipes/many-station-weather/ — twenty station feeds unioned into one hourly table. - https://mostlyright.md/docs/recipes/stream-to-bars/ — recorded trade frames aggregated into one-minute bars. Reference. - https://mostlyright.md/docs/reference/cli/ — every mr-data command, one line each. - https://mostlyright.md/docs/reference/cli/auth/ — login, auth, whoami, open, clarify. - https://mostlyright.md/docs/reference/cli/dataset/ — dataset and cover. - https://mostlyright.md/docs/reference/cli/recipe/ — recipe, probe, catalog, connections, keys. - https://mostlyright.md/docs/reference/cli/run/ — run, runs, status, watch, checks, receipt, note, diff, verify. - https://mostlyright.md/docs/reference/cli/read/ — peek, query, download, parts. - https://mostlyright.md/docs/reference/cli/table/ — table, promote, reschedule, pin, unpin, demote. - https://mostlyright.md/docs/reference/cli/stream/ — stream venues and recordings. - https://mostlyright.md/docs/reference/recipe/ — the recipe document, field by field. - https://mostlyright.md/docs/reference/sources/ — source kinds and connectors. - https://mostlyright.md/docs/reference/readers/ — readers. - https://mostlyright.md/docs/reference/transforms/ — transforms. - https://mostlyright.md/docs/reference/checks/ — checks. - https://mostlyright.md/docs/reference/units/ — units and vocabulary. - https://mostlyright.md/docs/reference/run-states-and-errors/ — run states, events, refusal and worker codes. - https://mostlyright.md/docs/reference/limits/ — limits and ceilings. Reading a dataset somebody else published is covered by the three pages named at the top of this file: the Public Dataset API, Use a public dataset, and Connect an AI tool with MCP. ## Datasets 108 public datasets, most recently published first. ### US fatal crash rates per mile by gender, 2022 - Slug: us-fatal-crash-rates-per-mile-by-gender-2022 - Summary: Each row pairs drivers in US fatal crashes with the miles that group drove, for one sex and age band in 2022. Crashes come from the Fatality Analysis Reporting System (FARS), miles from the National Household Travel Survey (NHTS). ## Cover… - Page: https://mostlyright.md/datasets/us-fatal-crash-rates-per-mile-by-gender-2022 - Publisher: mostlyrightmd - Topics: traffic safety, fatality analysis reporting system, national household travel survey, vehicle miles traveled, driver demographics, road safety statistics - Published: 2026-09-22T12:52:08.386Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/us-fatal-crash-rates-per-mile-by-gender-2022 - This dataset as Markdown: https://mostlyright.md/datasets/us-fatal-crash-rates-per-mile-by-gender-2022/llms.txt Tables (1): - fatal_crash_rate_by_gender (fatal-crash-rate-by-gender) - tableId: 21f74d3d-b0ee-4ba6-ad3f-9e8e3f9b8b18 - version_id: c116052d-c82b-43fb-a100-a7fc84fe20ab - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/21f74d3d-b0ee-4ba6-ad3f-9e8e3f9b8b18/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/21f74d3d-b0ee-4ba6-ad3f-9e8e3f9b8b18/preview - Query: POST https://mostlyright.md/api/v2/public/tables/21f74d3d-b0ee-4ba6-ad3f-9e8e3f9b8b18/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/21f74d3d-b0ee-4ba6-ad3f-9e8e3f9b8b18/current (x-api-key: mr_use_…, Parquet) ### Kalshi daily high and low temperature raw ticks - Slug: kalshi-us-city-temperature-order-books-live - Summary: **Measure quoted liquidity in Kalshi US city temperature markets.** These raw order-book events cover daily high and low temperature contracts for selected US cities, with recordings from 14 September 2026 onward and receipt times in UTC.… - Page: https://mostlyright.md/datasets/kalshi-us-city-temperature-order-books-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, weather, temperature, order book, us cities - Published: 2026-09-21T18:17:40.591Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-us-city-temperature-order-books-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-us-city-temperature-order-books-live/llms.txt Tables (2): - weather_high_orderbook (weather-high-orderbook) - tableId: 6ed4b5d4-9cb9-4192-9fbd-70e2f6e2273e - version_id: 435695cf-7810-4d0b-be23-ef6766cd5162 - Schema: GET https://mostlyright.md/api/v2/public/tables/6ed4b5d4-9cb9-4192-9fbd-70e2f6e2273e/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6ed4b5d4-9cb9-4192-9fbd-70e2f6e2273e/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6ed4b5d4-9cb9-4192-9fbd-70e2f6e2273e/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6ed4b5d4-9cb9-4192-9fbd-70e2f6e2273e/current (x-api-key: mr_use_…, Parquet) - weather_low_orderbook (weather-low-orderbook) - tableId: 77aa3f08-d317-4b9a-b683-de414ea6af34 - version_id: 483cb016-cb41-451c-bde8-e14a0fcad957 - Schema: GET https://mostlyright.md/api/v2/public/tables/77aa3f08-d317-4b9a-b683-de414ea6af34/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/77aa3f08-d317-4b9a-b683-de414ea6af34/preview - Query: POST https://mostlyright.md/api/v2/public/tables/77aa3f08-d317-4b9a-b683-de414ea6af34/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/77aa3f08-d317-4b9a-b683-de414ea6af34/current (x-api-key: mr_use_…, Parquet) ### Czech horse racing race-day results and weather 1997-2026 - Slug: czech-horse-racing-results-19972026 - Summary: **Study Czech domestic horse-racing starts from 1997 through the latest published result.** This table combines Jockey Club Czech Republic meeting results and retrieval-time horse profiles with ČHMÚ weather observations and source provenan… - Page: https://mostlyright.md/datasets/czech-horse-racing-results-19972026 - Publisher: mostlyrightmd - Topics: horse racing, jockey club czech republic, czech hydrometeorological institute, sports statistics, race results, meteorological data - Published: 2026-09-20T18:46:20.514Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/czech-horse-racing-results-19972026 - This dataset as Markdown: https://mostlyright.md/datasets/czech-horse-racing-results-19972026/llms.txt Tables (1): - horse_race_starts (horse-race-starts) - tableId: 5ebcc94b-d479-414e-88db-519f7ec6811a - version_id: 1eeedc31-9583-463c-9af7-1c8d470f9c2d - Schema: GET https://mostlyright.md/api/v2/public/tables/5ebcc94b-d479-414e-88db-519f7ec6811a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/5ebcc94b-d479-414e-88db-519f7ec6811a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/5ebcc94b-d479-414e-88db-519f7ec6811a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/5ebcc94b-d479-414e-88db-519f7ec6811a/current (x-api-key: mr_use_…, Parquet) ### NYC flight delays and weather, 2023–2025 - Slug: nyc-flight-delays-and-weather-januaryjuly-2025 - Summary: **Model New York flight delays with schedule, route, airport, and pre-departure weather fields.** This dataset joins reported domestic departures from JFK, Newark, and LaGuardia with earlier weather observations and airport metadata. Use i… - Page: https://mostlyright.md/datasets/nyc-flight-delays-and-weather-januaryjuly-2025 - Publisher: mostlyrightmd - Topics: flight delays, new york city, aviation, weather, machine learning - Published: 2026-09-14T23:18:20.217Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/nyc-flight-delays-and-weather-januaryjuly-2025 - This dataset as Markdown: https://mostlyright.md/datasets/nyc-flight-delays-and-weather-januaryjuly-2025/llms.txt Tables (1): - nyc_flight_delays_ml (nyc-flight-delays-ml) - tableId: ca5f9706-e597-4842-9bd5-57215d43158c - version_id: c8886c0f-595b-4a50-a278-12e380724af0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ca5f9706-e597-4842-9bd5-57215d43158c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ca5f9706-e597-4842-9bd5-57215d43158c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ca5f9706-e597-4842-9bd5-57215d43158c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ca5f9706-e597-4842-9bd5-57215d43158c/current (x-api-key: mr_use_…, Parquet) ### Hourly rainfall and gauge history, U.S. cities, 2000–2026 - Slug: hourly-rainfall-and-gauge-history-u-s-cities-20002026 - Summary: **Compare hourly rainfall with station and gauge history across 27 U.S. cities.** This dataset joins NOAA precipitation observations at 28 sites to historically applicable station locations and equipment records for city-level analysis and… - Page: https://mostlyright.md/datasets/hourly-rainfall-and-gauge-history-u-s-cities-20002026 - Publisher: mostlyrightmd - Topics: rain gauges, airports, asos, weather stations, united states, central park - Published: 2026-09-14T21:16:48.070Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/hourly-rainfall-and-gauge-history-u-s-cities-20002026 - This dataset as Markdown: https://mostlyright.md/datasets/hourly-rainfall-and-gauge-history-u-s-cities-20002026/llms.txt Tables (27): - west_palm_beach_hourly (west-palm-beach-hourly) - tableId: 7950ccf9-6ad8-4684-b518-8764917165e7 - version_id: 7a5814a1-5c85-4d3c-af00-0c01e5605b74 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/7950ccf9-6ad8-4684-b518-8764917165e7/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/7950ccf9-6ad8-4684-b518-8764917165e7/preview - Query: POST https://mostlyright.md/api/v2/public/tables/7950ccf9-6ad8-4684-b518-8764917165e7/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/7950ccf9-6ad8-4684-b518-8764917165e7/current (x-api-key: mr_use_…, Parquet) - new_orleans_hourly (new-orleans-hourly) - tableId: 7502368f-b46c-43f1-8aad-12f9c06473e6 - version_id: b9884296-b607-4f4e-94e6-c579e5f81e5a - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/7502368f-b46c-43f1-8aad-12f9c06473e6/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/7502368f-b46c-43f1-8aad-12f9c06473e6/preview - Query: POST https://mostlyright.md/api/v2/public/tables/7502368f-b46c-43f1-8aad-12f9c06473e6/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/7502368f-b46c-43f1-8aad-12f9c06473e6/current (x-api-key: mr_use_…, Parquet) - atlanta_hourly (atlanta-hourly) - tableId: 7ef3423e-8e54-4971-8f82-fef02711c4c6 - version_id: 1a755185-dc07-47a9-a8f7-382c67cb5693 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/7ef3423e-8e54-4971-8f82-fef02711c4c6/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/7ef3423e-8e54-4971-8f82-fef02711c4c6/preview - Query: POST https://mostlyright.md/api/v2/public/tables/7ef3423e-8e54-4971-8f82-fef02711c4c6/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/7ef3423e-8e54-4971-8f82-fef02711c4c6/current (x-api-key: mr_use_…, Parquet) - oklahoma_city_hourly (oklahoma-city-hourly) - tableId: 7e5118dc-fdb9-4a8a-8dd0-90f676e3f73b - version_id: eda72389-2bc8-4dc5-aed3-4e2a1d9bfe4c - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/7e5118dc-fdb9-4a8a-8dd0-90f676e3f73b/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/7e5118dc-fdb9-4a8a-8dd0-90f676e3f73b/preview - Query: POST https://mostlyright.md/api/v2/public/tables/7e5118dc-fdb9-4a8a-8dd0-90f676e3f73b/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/7e5118dc-fdb9-4a8a-8dd0-90f676e3f73b/current (x-api-key: mr_use_…, Parquet) - san_francisco_hourly (san-francisco-hourly) - tableId: 820b0a6c-272d-47d0-97fb-0a6055c1dd6c - version_id: 67d31530-8a36-439b-8962-46354a8d8a3e - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/820b0a6c-272d-47d0-97fb-0a6055c1dd6c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/820b0a6c-272d-47d0-97fb-0a6055c1dd6c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/820b0a6c-272d-47d0-97fb-0a6055c1dd6c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/820b0a6c-272d-47d0-97fb-0a6055c1dd6c/current (x-api-key: mr_use_…, Parquet) - newark_hourly (newark-hourly) - tableId: c6e4e81a-faa3-4240-93c2-ac8784544064 - version_id: b6c355b7-98f0-48b9-ad1e-ef41a964d0b8 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/c6e4e81a-faa3-4240-93c2-ac8784544064/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/c6e4e81a-faa3-4240-93c2-ac8784544064/preview - Query: POST https://mostlyright.md/api/v2/public/tables/c6e4e81a-faa3-4240-93c2-ac8784544064/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/c6e4e81a-faa3-4240-93c2-ac8784544064/current (x-api-key: mr_use_…, Parquet) - san_antonio_hourly (san-antonio-hourly) - tableId: 4e2dd927-1dda-4e01-b0d2-a0a4778da723 - version_id: 6d08f2f8-affd-448e-8a0b-aff05d6fad0f - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4e2dd927-1dda-4e01-b0d2-a0a4778da723/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4e2dd927-1dda-4e01-b0d2-a0a4778da723/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4e2dd927-1dda-4e01-b0d2-a0a4778da723/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4e2dd927-1dda-4e01-b0d2-a0a4778da723/current (x-api-key: mr_use_…, Parquet) - san_diego_hourly (san-diego-hourly) - tableId: ea9b58db-f773-405b-8090-2eecddb33547 - version_id: 773b6f62-63f9-4d4a-add1-962020b1d946 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ea9b58db-f773-405b-8090-2eecddb33547/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ea9b58db-f773-405b-8090-2eecddb33547/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ea9b58db-f773-405b-8090-2eecddb33547/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ea9b58db-f773-405b-8090-2eecddb33547/current (x-api-key: mr_use_…, Parquet) - dallas_hourly (dallas-hourly) - tableId: 836440da-703e-4879-93b6-8a00daab49e9 - version_id: 235408b7-264b-46fc-a15c-fd43da86fb03 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/836440da-703e-4879-93b6-8a00daab49e9/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/836440da-703e-4879-93b6-8a00daab49e9/preview - Query: POST https://mostlyright.md/api/v2/public/tables/836440da-703e-4879-93b6-8a00daab49e9/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/836440da-703e-4879-93b6-8a00daab49e9/current (x-api-key: mr_use_…, Parquet) - phoenix_hourly (phoenix-hourly) - tableId: 5d5d3c34-802e-4d3b-bf29-fb6a604b8772 - version_id: 9788db9e-ae36-4163-8065-ce6fdef2311d - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/5d5d3c34-802e-4d3b-bf29-fb6a604b8772/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/5d5d3c34-802e-4d3b-bf29-fb6a604b8772/preview - Query: POST https://mostlyright.md/api/v2/public/tables/5d5d3c34-802e-4d3b-bf29-fb6a604b8772/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/5d5d3c34-802e-4d3b-bf29-fb6a604b8772/current (x-api-key: mr_use_…, Parquet) - las_vegas_hourly (las-vegas-hourly) - tableId: 3a8eccd3-5119-43d6-a9c8-66b0e9f43c4a - version_id: 2015a279-6546-4fed-b9fd-433fa86c1ce8 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3a8eccd3-5119-43d6-a9c8-66b0e9f43c4a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3a8eccd3-5119-43d6-a9c8-66b0e9f43c4a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3a8eccd3-5119-43d6-a9c8-66b0e9f43c4a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3a8eccd3-5119-43d6-a9c8-66b0e9f43c4a/current (x-api-key: mr_use_…, Parquet) - minneapolis_hourly (minneapolis-hourly) - tableId: a33c4098-ba6d-4e51-9df9-feae54b1e3c6 - version_id: c0d695c1-27d4-45ef-8dd9-a9d305ada2fe - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/a33c4098-ba6d-4e51-9df9-feae54b1e3c6/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/a33c4098-ba6d-4e51-9df9-feae54b1e3c6/preview - Query: POST https://mostlyright.md/api/v2/public/tables/a33c4098-ba6d-4e51-9df9-feae54b1e3c6/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/a33c4098-ba6d-4e51-9df9-feae54b1e3c6/current (x-api-key: mr_use_…, Parquet) - chicago_hourly (chicago-hourly) - tableId: 48c04cba-1176-444d-ab7e-0aecc5a5daf4 - version_id: 1cc32fbf-a6ef-480b-bb6b-6300e0056ab4 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/48c04cba-1176-444d-ab7e-0aecc5a5daf4/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/48c04cba-1176-444d-ab7e-0aecc5a5daf4/preview - Query: POST https://mostlyright.md/api/v2/public/tables/48c04cba-1176-444d-ab7e-0aecc5a5daf4/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/48c04cba-1176-444d-ab7e-0aecc5a5daf4/current (x-api-key: mr_use_…, Parquet) - houston_hourly (houston-hourly) - tableId: f6426770-013e-4d08-8b79-87f1fc504392 - version_id: b3e16dbb-8c4d-4178-8422-c6fa2b34e51f - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f6426770-013e-4d08-8b79-87f1fc504392/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f6426770-013e-4d08-8b79-87f1fc504392/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f6426770-013e-4d08-8b79-87f1fc504392/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f6426770-013e-4d08-8b79-87f1fc504392/current (x-api-key: mr_use_…, Parquet) - st_petersburg_hourly (st-petersburg-hourly) - tableId: 3343523d-6070-4423-999d-e3a0606f6061 - version_id: eb56610c-fa8a-4d7d-a29d-4cdb08b3c894 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3343523d-6070-4423-999d-e3a0606f6061/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3343523d-6070-4423-999d-e3a0606f6061/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3343523d-6070-4423-999d-e3a0606f6061/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3343523d-6070-4423-999d-e3a0606f6061/current (x-api-key: mr_use_…, Parquet) - seattle_hourly (seattle-hourly) - tableId: 5e04b0fd-21e5-4c8d-bccd-39e7bce5c672 - version_id: c36bd9a3-7031-4c21-8b53-aa5fb6dc8c75 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/5e04b0fd-21e5-4c8d-bccd-39e7bce5c672/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/5e04b0fd-21e5-4c8d-bccd-39e7bce5c672/preview - Query: POST https://mostlyright.md/api/v2/public/tables/5e04b0fd-21e5-4c8d-bccd-39e7bce5c672/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/5e04b0fd-21e5-4c8d-bccd-39e7bce5c672/current (x-api-key: mr_use_…, Parquet) - san_jose_hourly (san-jose-hourly) - tableId: e4364816-e783-4081-bcbf-c06d1d886199 - version_id: 059fe416-3829-4c55-b7a1-f932fd7e6f19 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/e4364816-e783-4081-bcbf-c06d1d886199/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/e4364816-e783-4081-bcbf-c06d1d886199/preview - Query: POST https://mostlyright.md/api/v2/public/tables/e4364816-e783-4081-bcbf-c06d1d886199/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/e4364816-e783-4081-bcbf-c06d1d886199/current (x-api-key: mr_use_…, Parquet) - trenton_hourly (trenton-hourly) - tableId: 6b45af58-a5ed-4637-b9fc-c62b555a945d - version_id: b175ac56-84ec-429a-80f7-35173bd3580e - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/6b45af58-a5ed-4637-b9fc-c62b555a945d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6b45af58-a5ed-4637-b9fc-c62b555a945d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6b45af58-a5ed-4637-b9fc-c62b555a945d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6b45af58-a5ed-4637-b9fc-c62b555a945d/current (x-api-key: mr_use_…, Parquet) - new_york_city_hourly (new-york-city-hourly) - tableId: 5504cff2-7c08-496d-b71e-0d8569d383df - version_id: b63ac1bf-d0d5-4661-8d8f-124947aa87bd - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/5504cff2-7c08-496d-b71e-0d8569d383df/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/5504cff2-7c08-496d-b71e-0d8569d383df/preview - Query: POST https://mostlyright.md/api/v2/public/tables/5504cff2-7c08-496d-b71e-0d8569d383df/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/5504cff2-7c08-496d-b71e-0d8569d383df/current (x-api-key: mr_use_…, Parquet) - boston_hourly (boston-hourly) - tableId: 734f5a32-4dce-49ea-8186-87b7656752ba - version_id: 9c9cfbd9-cd6c-4ebd-b159-2d72d423ad7b - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/734f5a32-4dce-49ea-8186-87b7656752ba/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/734f5a32-4dce-49ea-8186-87b7656752ba/preview - Query: POST https://mostlyright.md/api/v2/public/tables/734f5a32-4dce-49ea-8186-87b7656752ba/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/734f5a32-4dce-49ea-8186-87b7656752ba/current (x-api-key: mr_use_…, Parquet) - louisville_hourly (louisville-hourly) - tableId: 06853326-303b-416b-8b2a-2b20465c8b03 - version_id: 5d2cfe28-ef3d-46eb-a4f1-a72ceaeae202 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/06853326-303b-416b-8b2a-2b20465c8b03/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/06853326-303b-416b-8b2a-2b20465c8b03/preview - Query: POST https://mostlyright.md/api/v2/public/tables/06853326-303b-416b-8b2a-2b20465c8b03/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/06853326-303b-416b-8b2a-2b20465c8b03/current (x-api-key: mr_use_…, Parquet) - denver_hourly (denver-hourly) - tableId: b9fc860e-0a94-4a0f-b1de-92a18fb2b84a - version_id: 1ba729f3-137b-4d29-a213-2e81ea88f175 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b9fc860e-0a94-4a0f-b1de-92a18fb2b84a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b9fc860e-0a94-4a0f-b1de-92a18fb2b84a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b9fc860e-0a94-4a0f-b1de-92a18fb2b84a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b9fc860e-0a94-4a0f-b1de-92a18fb2b84a/current (x-api-key: mr_use_…, Parquet) - miami_hourly (miami-hourly) - tableId: 665d7e2e-568d-4f45-ad00-b09a937e65d6 - version_id: 0ab4a1ef-2704-4e82-9ce0-7f95aa8fef2d - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/665d7e2e-568d-4f45-ad00-b09a937e65d6/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/665d7e2e-568d-4f45-ad00-b09a937e65d6/preview - Query: POST https://mostlyright.md/api/v2/public/tables/665d7e2e-568d-4f45-ad00-b09a937e65d6/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/665d7e2e-568d-4f45-ad00-b09a937e65d6/current (x-api-key: mr_use_…, Parquet) - washington_dc_hourly (washington-dc-hourly) - tableId: dc23b222-5b66-478c-9fda-8742305368e1 - version_id: 0fccb881-a005-4097-93b7-07b2798dc485 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/dc23b222-5b66-478c-9fda-8742305368e1/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/dc23b222-5b66-478c-9fda-8742305368e1/preview - Query: POST https://mostlyright.md/api/v2/public/tables/dc23b222-5b66-478c-9fda-8742305368e1/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/dc23b222-5b66-478c-9fda-8742305368e1/current (x-api-key: mr_use_…, Parquet) - philadelphia_hourly (philadelphia-hourly) - tableId: 48a299a6-0de3-4cf0-b8fc-f27922999824 - version_id: ec79abc2-f8ec-4c29-b060-ad85e5f91f45 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/48a299a6-0de3-4cf0-b8fc-f27922999824/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/48a299a6-0de3-4cf0-b8fc-f27922999824/preview - Query: POST https://mostlyright.md/api/v2/public/tables/48a299a6-0de3-4cf0-b8fc-f27922999824/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/48a299a6-0de3-4cf0-b8fc-f27922999824/current (x-api-key: mr_use_…, Parquet) - los_angeles_hourly (los-angeles-hourly) - tableId: c680aba3-dc97-469c-8935-1e7ef57f1455 - version_id: ac1d6c85-95e5-4730-b7e3-af9412845d52 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/c680aba3-dc97-469c-8935-1e7ef57f1455/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/c680aba3-dc97-469c-8935-1e7ef57f1455/preview - Query: POST https://mostlyright.md/api/v2/public/tables/c680aba3-dc97-469c-8935-1e7ef57f1455/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/c680aba3-dc97-469c-8935-1e7ef57f1455/current (x-api-key: mr_use_…, Parquet) - austin_hourly (austin-hourly) - tableId: 91666c3b-118f-4001-97d1-cab2d32d5a6c - version_id: 37fcc968-2d33-478a-bb6c-be3b86a69ff5 - license: CC0-1.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/91666c3b-118f-4001-97d1-cab2d32d5a6c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/91666c3b-118f-4001-97d1-cab2d32d5a6c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/91666c3b-118f-4001-97d1-cab2d32d5a6c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/91666c3b-118f-4001-97d1-cab2d32d5a6c/current (x-api-key: mr_use_…, Parquet) ### Nursing home operators and staffing, United States - Slug: nursing-home-operators-and-staffing-united-states - Summary: **Research U.S. nursing-home facilities, staffing, ratings and source-reported ownership links.** The dataset connects CMS facility-release history with ownership, management and limited public recruiting records so account researchers can… - Page: https://mostlyright.md/datasets/nursing-home-operators-and-staffing-united-states - Publisher: mostlyrightmd - Topics: nursing homes, skilled nursing facilities, cms care compare, ownership changes, nurse staffing, operator evidence, public jobs, long-term care - Published: 2026-09-14T21:00:42.557Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/nursing-home-operators-and-staffing-united-states - This dataset as Markdown: https://mostlyright.md/datasets/nursing-home-operators-and-staffing-united-states/llms.txt Tables (4): - nursing_homes (nursing-homes) - tableId: 1c95acda-0039-4692-b53b-794835639330 - version_id: ce6deb3d-451b-4205-850e-a14124af5f00 - Schema: GET https://mostlyright.md/api/v2/public/tables/1c95acda-0039-4692-b53b-794835639330/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1c95acda-0039-4692-b53b-794835639330/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1c95acda-0039-4692-b53b-794835639330/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1c95acda-0039-4692-b53b-794835639330/current (x-api-key: mr_use_…, Parquet) - healthcare_accounts (healthcare-accounts) - tableId: 5b3c444d-40af-4fde-94ec-fef1cd0c8639 - version_id: 4755e291-3680-4172-ba11-65531eecab8a - Schema: GET https://mostlyright.md/api/v2/public/tables/5b3c444d-40af-4fde-94ec-fef1cd0c8639/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/5b3c444d-40af-4fde-94ec-fef1cd0c8639/preview - Query: POST https://mostlyright.md/api/v2/public/tables/5b3c444d-40af-4fde-94ec-fef1cd0c8639/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/5b3c444d-40af-4fde-94ec-fef1cd0c8639/current (x-api-key: mr_use_…, Parquet) - operator_vacancies (operator-vacancies) - tableId: 521dab34-54ee-4069-bcbc-93c053b64b7a - version_id: 9033d65f-34b1-434e-9aa0-bc1a5daf94f3 - Schema: GET https://mostlyright.md/api/v2/public/tables/521dab34-54ee-4069-bcbc-93c053b64b7a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/521dab34-54ee-4069-bcbc-93c053b64b7a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/521dab34-54ee-4069-bcbc-93c053b64b7a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/521dab34-54ee-4069-bcbc-93c053b64b7a/current (x-api-key: mr_use_…, Parquet) - operator_contacts_roles (operator-contacts-roles) - tableId: 2db14b22-cfbe-4c5d-9c9e-3b27562b8134 - version_id: d204a685-dae8-4b9d-a37d-6abd9d9f76bd - Schema: GET https://mostlyright.md/api/v2/public/tables/2db14b22-cfbe-4c5d-9c9e-3b27562b8134/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2db14b22-cfbe-4c5d-9c9e-3b27562b8134/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2db14b22-cfbe-4c5d-9c9e-3b27562b8134/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2db14b22-cfbe-4c5d-9c9e-3b27562b8134/current (x-api-key: mr_use_…, Parquet) ### Polymarket daily high and low temperature raw ticks - Slug: polymarket-daily-high-and-low-temperature-raw-ticks - Summary: **Study raw Polymarket order-book events for daily high and low temperature markets.** This dataset records market-channel messages for city temperature markets from 14 September 2026 onward, including market metadata, venue timestamps whe… - Page: https://mostlyright.md/datasets/polymarket-daily-high-and-low-temperature-raw-ticks - Publisher: mostlyrightmd - Topics: polymarket, prediction markets, order book, weather, temperature, limit order book, cities - Published: 2026-09-14T16:57:30.087Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/polymarket-daily-high-and-low-temperature-raw-ticks - This dataset as Markdown: https://mostlyright.md/datasets/polymarket-daily-high-and-low-temperature-raw-ticks/llms.txt Tables (2): - weather_low_orderbook (weather-low-orderbook) - tableId: d12f03eb-6a31-4b94-8543-cbeaaf3560cb - version_id: 1c408861-017b-41da-891f-c281facdff87 - Schema: GET https://mostlyright.md/api/v2/public/tables/d12f03eb-6a31-4b94-8543-cbeaaf3560cb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/d12f03eb-6a31-4b94-8543-cbeaaf3560cb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/d12f03eb-6a31-4b94-8543-cbeaaf3560cb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/d12f03eb-6a31-4b94-8543-cbeaaf3560cb/current (x-api-key: mr_use_…, Parquet) - weather_high_orderbook (weather-high-orderbook) - tableId: 2aa5f5be-0d2a-4dfc-a0e9-40ec85e4e679 - version_id: 8e9df787-a43d-4820-9c6d-a43fa03e4b67 - Schema: GET https://mostlyright.md/api/v2/public/tables/2aa5f5be-0d2a-4dfc-a0e9-40ec85e4e679/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2aa5f5be-0d2a-4dfc-a0e9-40ec85e4e679/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2aa5f5be-0d2a-4dfc-a0e9-40ec85e4e679/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2aa5f5be-0d2a-4dfc-a0e9-40ec85e4e679/current (x-api-key: mr_use_…, Parquet) ### Policy indicators, India and South Asia, 2000–2024 - Slug: policy-indicators-india-and-south-asia-20002024 - Summary: **Compare India's policy indicators with seven South Asian neighbours from 2000 to 2024.** This dataset contains World Bank country-year panels for India, Afghanistan, Bangladesh, Bhutan, Maldives, Nepal, Pakistan, and Sri Lanka across hea… - Page: https://mostlyright.md/datasets/policy-indicators-india-and-south-asia-20002024 - Publisher: mostlyrightmd - Topics: india, public policy, south asia, health, education, employment, infrastructure - Published: 2026-09-14T15:14:10.203Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/policy-indicators-india-and-south-asia-20002024 - This dataset as Markdown: https://mostlyright.md/datasets/policy-indicators-india-and-south-asia-20002024/llms.txt Tables (4): - policy_observations (policy-observations) - tableId: fed8b8c5-210b-489c-8ec8-cf339f4e7255 - version_id: 4d329e8f-f959-4527-b48e-5c35d8f59723 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/fed8b8c5-210b-489c-8ec8-cf339f4e7255/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/fed8b8c5-210b-489c-8ec8-cf339f4e7255/preview - Query: POST https://mostlyright.md/api/v2/public/tables/fed8b8c5-210b-489c-8ec8-cf339f4e7255/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/fed8b8c5-210b-489c-8ec8-cf339f4e7255/current (x-api-key: mr_use_…, Parquet) - indicator_dictionary (indicator-dictionary) - tableId: a9f1a8d0-3abc-46af-b2bc-bbad74d68b39 - version_id: e7c100e9-aa4d-4f20-91b4-ca7a7687a3e0 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/a9f1a8d0-3abc-46af-b2bc-bbad74d68b39/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/a9f1a8d0-3abc-46af-b2bc-bbad74d68b39/preview - Query: POST https://mostlyright.md/api/v2/public/tables/a9f1a8d0-3abc-46af-b2bc-bbad74d68b39/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/a9f1a8d0-3abc-46af-b2bc-bbad74d68b39/current (x-api-key: mr_use_…, Parquet) - india_policy_panel (india-policy-panel) - tableId: 842f2727-487e-4900-8716-eca3cbf8c8ef - version_id: 1dc07aae-1be1-427d-8d9c-5d38765d222b - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/842f2727-487e-4900-8716-eca3cbf8c8ef/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/842f2727-487e-4900-8716-eca3cbf8c8ef/preview - Query: POST https://mostlyright.md/api/v2/public/tables/842f2727-487e-4900-8716-eca3cbf8c8ef/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/842f2727-487e-4900-8716-eca3cbf8c8ef/current (x-api-key: mr_use_…, Parquet) - south_asia_comparison_panel (south-asia-comparison-panel) - tableId: b0ad352c-36b6-44c4-9f09-51bffbfe83cc - version_id: 3d44f3cc-ba4c-4f96-992b-6e40bec61fb6 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b0ad352c-36b6-44c4-9f09-51bffbfe83cc/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b0ad352c-36b6-44c4-9f09-51bffbfe83cc/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b0ad352c-36b6-44c4-9f09-51bffbfe83cc/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b0ad352c-36b6-44c4-9f09-51bffbfe83cc/current (x-api-key: mr_use_…, Parquet) ### Kalshi settlement rules and sources, 2026 - Slug: kalshi-settlement-rules-and-sources-2026 - Summary: Each row is one open Kalshi market with its full settlement rules, timing and the settlement sources its series names, from Kalshi's public trading interface. About 5,400 markets in 72 series, updated every 6 hours. ## Coverage - **Window:… - Page: https://mostlyright.md/datasets/kalshi-settlement-rules-and-sources-2026 - Publisher: bobby - Topics: prediction markets, united states, settlement rules, kalshi, event contracts, cftc filings - Published: 2026-09-14T08:44:04.266Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-settlement-rules-and-sources-2026 - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-settlement-rules-and-sources-2026/llms.txt Tables (1): - market_rules (market-rules) - tableId: 502bcf43-674a-4d21-bcf5-db1ec1ba3956 - version_id: eade57cf-d170-48ab-837c-26a658db8ae2 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/502bcf43-674a-4d21-bcf5-db1ec1ba3956/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/502bcf43-674a-4d21-bcf5-db1ec1ba3956/preview - Query: POST https://mostlyright.md/api/v2/public/tables/502bcf43-674a-4d21-bcf5-db1ec1ba3956/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/502bcf43-674a-4d21-bcf5-db1ec1ba3956/current (x-api-key: mr_use_…, Parquet) ### Y Combinator company status and Form D filings - Slug: y-combinator-company-status-and-form-d-filings - Summary: **Track how Y Combinator companies change over time.** This dataset brings together company status changes reported by YC and SEC Form D fundraising notices, covering companies worldwide from 2009 to 2026. Use it to build company timelines… - Page: https://mostlyright.md/datasets/y-combinator-company-status-and-form-d-filings - Publisher: mostlyrightmd - Topics: y combinator, startups, form d, sec edgar, venture funding, acquisitions, startup failure - Published: 2026-09-13T09:39:23.671Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/y-combinator-company-status-and-form-d-filings - This dataset as Markdown: https://mostlyright.md/datasets/y-combinator-company-status-and-form-d-filings/llms.txt Tables (1): - yc_company_events (yc-company-events) - tableId: e3ff0550-705f-4570-815d-4be21f534302 - version_id: 0fbc693f-8a5d-4790-9b1a-840643511b50 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/e3ff0550-705f-4570-815d-4be21f534302/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/e3ff0550-705f-4570-815d-4be21f534302/preview - Query: POST https://mostlyright.md/api/v2/public/tables/e3ff0550-705f-4570-815d-4be21f534302/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/e3ff0550-705f-4570-815d-4be21f534302/current (x-api-key: mr_use_…, Parquet) ### Beijing weather reports and daily highs since 2020 - Slug: beijing-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Beijing weather, report by report.** This dataset pairs weather reports from Beijing Capital International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airpo… - Page: https://mostlyright.md/datasets/beijing-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, beijing, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:31:42.468Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/beijing-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/beijing-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zbaa (reports-zbaa) - tableId: 17b07278-1e92-40d5-80a3-4ad03de899cb - version_id: 5302f9d2-2ed5-412f-a898-fcff66dd9262 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/17b07278-1e92-40d5-80a3-4ad03de899cb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/17b07278-1e92-40d5-80a3-4ad03de899cb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/17b07278-1e92-40d5-80a3-4ad03de899cb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/17b07278-1e92-40d5-80a3-4ad03de899cb/current (x-api-key: mr_use_…, Parquet) ### Guangzhou weather reports and daily highs since 2020 - Slug: guangzhou-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Guangzhou weather, report by report.** This dataset pairs weather reports from Baiyun International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or e… - Page: https://mostlyright.md/datasets/guangzhou-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, guangzhou, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:31:30.812Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/guangzhou-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/guangzhou-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zggg (reports-zggg) - tableId: f1b5038d-4a5f-40e5-9360-c067985d8810 - version_id: 7d993f80-67bf-456e-8a8a-0405e84fc1c7 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f1b5038d-4a5f-40e5-9360-c067985d8810/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f1b5038d-4a5f-40e5-9360-c067985d8810/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f1b5038d-4a5f-40e5-9360-c067985d8810/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f1b5038d-4a5f-40e5-9360-c067985d8810/current (x-api-key: mr_use_…, Parquet) ### Shenzhen weather reports and daily highs since 2020 - Slug: shenzhen-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Shenzhen weather, report by report.** This dataset pairs weather reports from Bao'an International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or ev… - Page: https://mostlyright.md/datasets/shenzhen-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, shenzhen, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:31:17.466Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/shenzhen-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/shenzhen-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zgsz (reports-zgsz) - tableId: d5588d7c-5679-419f-ad3a-b561ac78b778 - version_id: 7d1d69d2-2a02-4456-b13e-3be2051c1334 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/d5588d7c-5679-419f-ad3a-b561ac78b778/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/d5588d7c-5679-419f-ad3a-b561ac78b778/preview - Query: POST https://mostlyright.md/api/v2/public/tables/d5588d7c-5679-419f-ad3a-b561ac78b778/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/d5588d7c-5679-419f-ad3a-b561ac78b778/current (x-api-key: mr_use_…, Parquet) ### Zhengzhou weather reports and daily highs since 2020 - Slug: zhengzhou-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Zhengzhou weather, report by report.** This dataset pairs weather reports from Xinzheng International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or… - Page: https://mostlyright.md/datasets/zhengzhou-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, zhengzhou, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:31:06.093Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/zhengzhou-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/zhengzhou-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zhcc (reports-zhcc) - tableId: 4af6f727-3fd9-4ee1-973f-608db3d1370e - version_id: 5cac43c4-0f43-4c23-93df-9662a189acda - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4af6f727-3fd9-4ee1-973f-608db3d1370e/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4af6f727-3fd9-4ee1-973f-608db3d1370e/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4af6f727-3fd9-4ee1-973f-608db3d1370e/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4af6f727-3fd9-4ee1-973f-608db3d1370e/current (x-api-key: mr_use_…, Parquet) ### Wuhan weather reports and daily highs since 2020 - Slug: wuhan-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Wuhan weather, report by report.** This dataset pairs weather reports from Tianhe International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evalu… - Page: https://mostlyright.md/datasets/wuhan-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, wuhan, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:30:50.940Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/wuhan-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/wuhan-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zhhh (reports-zhhh) - tableId: 9481126c-650f-41dc-bee4-69e54d011992 - version_id: 0d033366-cb08-47a9-abcd-bc5d4a0898d2 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/9481126c-650f-41dc-bee4-69e54d011992/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/9481126c-650f-41dc-bee4-69e54d011992/preview - Query: POST https://mostlyright.md/api/v2/public/tables/9481126c-650f-41dc-bee4-69e54d011992/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/9481126c-650f-41dc-bee4-69e54d011992/current (x-api-key: mr_use_…, Parquet) ### Shanghai weather reports and daily highs since 2020 - Slug: shanghai-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Shanghai weather, report by report.** This dataset pairs weather reports from Pudong International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or ev… - Page: https://mostlyright.md/datasets/shanghai-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, shanghai, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:30:39.288Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/shanghai-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/shanghai-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zspd (reports-zspd) - tableId: 2665d6e8-179a-4373-aecb-0431101c9b67 - version_id: 00213d48-b7a5-4fed-be5b-80806d946d4e - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/2665d6e8-179a-4373-aecb-0431101c9b67/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2665d6e8-179a-4373-aecb-0431101c9b67/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2665d6e8-179a-4373-aecb-0431101c9b67/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2665d6e8-179a-4373-aecb-0431101c9b67/current (x-api-key: mr_use_…, Parquet) ### Qingdao weather reports and daily highs since 2020 - Slug: qingdao-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Qingdao weather, report by report.** This dataset pairs weather reports from Jiaodong International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or e… - Page: https://mostlyright.md/datasets/qingdao-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, qingdao, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:30:26.919Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/qingdao-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/qingdao-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zsqd (reports-zsqd) - tableId: 80f7fac3-0789-4cbc-a0ba-8b5485d3b6cb - version_id: a7aff311-040a-4584-bb4a-828f21300993 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/80f7fac3-0789-4cbc-a0ba-8b5485d3b6cb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/80f7fac3-0789-4cbc-a0ba-8b5485d3b6cb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/80f7fac3-0789-4cbc-a0ba-8b5485d3b6cb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/80f7fac3-0789-4cbc-a0ba-8b5485d3b6cb/current (x-api-key: mr_use_…, Parquet) ### Chongqing weather reports and daily highs since 2020 - Slug: chongqing-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Chongqing weather, report by report.** This dataset pairs weather reports from Jiangbei International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or… - Page: https://mostlyright.md/datasets/chongqing-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, chongqing, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:30:16.253Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/chongqing-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/chongqing-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zuck (reports-zuck) - tableId: bf3f5822-d191-4e5b-89db-871067fcedd9 - version_id: 8fbcbaad-a473-4a26-b339-6d8e349517b7 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/bf3f5822-d191-4e5b-89db-871067fcedd9/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/bf3f5822-d191-4e5b-89db-871067fcedd9/preview - Query: POST https://mostlyright.md/api/v2/public/tables/bf3f5822-d191-4e5b-89db-871067fcedd9/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/bf3f5822-d191-4e5b-89db-871067fcedd9/current (x-api-key: mr_use_…, Parquet) ### Chengdu weather reports and daily highs since 2020 - Slug: chengdu-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Chengdu weather, report by report.** This dataset pairs weather reports from Shuangliu International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or… - Page: https://mostlyright.md/datasets/chengdu-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, chengdu, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:30:03.148Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/chengdu-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/chengdu-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_zuuu (reports-zuuu) - tableId: 4d8f7968-2121-4872-9131-94ab8d13356c - version_id: 0e868acc-1410-4b7e-9573-32bc7dc1874c - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4d8f7968-2121-4872-9131-94ab8d13356c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4d8f7968-2121-4872-9131-94ab8d13356c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4d8f7968-2121-4872-9131-94ab8d13356c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4d8f7968-2121-4872-9131-94ab8d13356c/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Bitcoin price order book, live - Slug: kalshi-hourly-bitcoin-price-order-book-live - Summary: **Measure quoted spreads and depth in Kalshi hourly Bitcoin price-threshold markets.** This event-driven history records one-second book states for active tickers since 8 September 2026, keeping the final changed state in each second. Use… - Page: https://mostlyright.md/datasets/kalshi-hourly-bitcoin-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, bitcoin, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:29:44.757Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-bitcoin-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-bitcoin-price-order-book-live/llms.txt Tables (1): - kalshi_btc1h_orderbook (kalshi-btc1h-orderbook) - tableId: 98886747-e75c-4dab-9183-70ef99a1465d - version_id: 702ef984-8b2c-46b6-bf07-ef0071c3aa38 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/98886747-e75c-4dab-9183-70ef99a1465d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/98886747-e75c-4dab-9183-70ef99a1465d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/98886747-e75c-4dab-9183-70ef99a1465d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/98886747-e75c-4dab-9183-70ef99a1465d/current (x-api-key: mr_use_…, Parquet) ### Singapore weather reports and daily highs since 2020 - Slug: singapore-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Singapore weather, report by report.** This dataset pairs weather reports from Changi Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily… - Page: https://mostlyright.md/datasets/singapore-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, singapore, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-12T10:29:30.030Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/singapore-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/singapore-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_wsss (reports-wsss) - tableId: f3016be6-29f4-47ba-8b50-8a272879b982 - version_id: 6f656227-e779-4c64-bb9d-0f57dee41a7c - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f3016be6-29f4-47ba-8b50-8a272879b982/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f3016be6-29f4-47ba-8b50-8a272879b982/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f3016be6-29f4-47ba-8b50-8a272879b982/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f3016be6-29f4-47ba-8b50-8a272879b982/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute BTC order book, fresh live - Slug: kalshi-15-minute-btc-order-book-fresh-live - Summary: **Measure quoted spreads and depth in Kalshi 15-minute Bitcoin order books.** This dataset stores sampled YES-side book states for rotating KXBTC15M contracts from September 9, 2026 onward, with venue time, receipt time, whole-cent prices,… - Page: https://mostlyright.md/datasets/kalshi-15-minute-btc-order-book-fresh-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, bitcoin, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:29:16.085Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-btc-order-book-fresh-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-btc-order-book-fresh-live/llms.txt Tables (1): - kalshi_btc15m_orderbook (kalshi-btc15m-orderbook) - tableId: 41f03fc0-5de5-498e-ab95-75f23eadd211 - version_id: 1b174d74-6629-496b-ae34-60896c9c2267 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/41f03fc0-5de5-498e-ab95-75f23eadd211/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/41f03fc0-5de5-498e-ab95-75f23eadd211/preview - Query: POST https://mostlyright.md/api/v2/public/tables/41f03fc0-5de5-498e-ab95-75f23eadd211/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/41f03fc0-5de5-498e-ab95-75f23eadd211/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute Dogecoin order book, live - Slug: kalshi-15-minute-dogecoin-order-book-live - Summary: **Measure quoted spreads and depth in Kalshi 15-minute Dogecoin direction markets.** This dataset records event-driven YES order book states for included DOGE up-or-down contracts from 10 September 2026 onward, with best bid, best ask, tot… - Page: https://mostlyright.md/datasets/kalshi-15-minute-dogecoin-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, dogecoin, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:28:59.487Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-dogecoin-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-dogecoin-order-book-live/llms.txt Tables (1): - kalshi_doge15m_orderbook (kalshi-doge15m-orderbook) - tableId: f4707bd8-b625-4503-9d42-8ebe43ab0412 - version_id: d4db4480-ba3b-4ca1-9885-f34a11354d79 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f4707bd8-b625-4503-9d42-8ebe43ab0412/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f4707bd8-b625-4503-9d42-8ebe43ab0412/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f4707bd8-b625-4503-9d42-8ebe43ab0412/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f4707bd8-b625-4503-9d42-8ebe43ab0412/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute BNB order book, live - Slug: kalshi-15-minute-bnb-order-book-live - Summary: **Measure quoted liquidity in Kalshi 15-minute BNB up-or-down markets.** This dataset records event-driven YES-side order book states for BNB contracts from September 10, 2026 onward. Use it to reconstruct quoted books by second, compare s… - Page: https://mostlyright.md/datasets/kalshi-15-minute-bnb-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, bnb, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:28:46.583Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-bnb-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-bnb-order-book-live/llms.txt Tables (1): - kalshi_bnb15m_orderbook (kalshi-bnb15m-orderbook) - tableId: 79d58ba5-e5c4-449e-9f60-770a84baad48 - version_id: db99a0eb-eee0-464d-aa9e-e599fafc04cf - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/79d58ba5-e5c4-449e-9f60-770a84baad48/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/79d58ba5-e5c4-449e-9f60-770a84baad48/preview - Query: POST https://mostlyright.md/api/v2/public/tables/79d58ba5-e5c4-449e-9f60-770a84baad48/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/79d58ba5-e5c4-449e-9f60-770a84baad48/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute Ethereum order book, live - Slug: kalshi-15-minute-ethereum-order-book-live - Summary: **Measure quoted spreads in Kalshi 15-minute Ethereum direction contracts.** This event-driven history records one-second YES order book states for ETH contracts with a resting YES bid since 10 September 2026. Use the ladders and depths to… - Page: https://mostlyright.md/datasets/kalshi-15-minute-ethereum-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, ethereum, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:28:34.388Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-ethereum-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-ethereum-order-book-live/llms.txt Tables (1): - kalshi_eth15m_orderbook (kalshi-eth15m-orderbook) - tableId: e627a644-0846-4b12-b666-1bddfbcd84fa - version_id: 9ea6e604-ff83-4634-bcbf-0107b779bd26 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/e627a644-0846-4b12-b666-1bddfbcd84fa/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/e627a644-0846-4b12-b666-1bddfbcd84fa/preview - Query: POST https://mostlyright.md/api/v2/public/tables/e627a644-0846-4b12-b666-1bddfbcd84fa/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/e627a644-0846-4b12-b666-1bddfbcd84fa/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute Hyperliquid order book, live - Slug: kalshi-15-minute-hyperliquid-order-book-live - Summary: **Measure quoted spreads and depth in Kalshi 15-minute Hyperliquid direction markets.** This dataset records event-driven YES order book states for included HYPE contracts from 10 September 2026 onward, with best bid, best ask, total side… - Page: https://mostlyright.md/datasets/kalshi-15-minute-hyperliquid-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, hyperliquid, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:28:21.882Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-hyperliquid-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-hyperliquid-order-book-live/llms.txt Tables (1): - kalshi_hype15m_orderbook (kalshi-hype15m-orderbook) - tableId: 379641ec-84e7-4c48-925c-8240b2cfddc6 - version_id: 354add12-c6fe-499e-ac02-0ae21dde8160 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/379641ec-84e7-4c48-925c-8240b2cfddc6/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/379641ec-84e7-4c48-925c-8240b2cfddc6/preview - Query: POST https://mostlyright.md/api/v2/public/tables/379641ec-84e7-4c48-925c-8240b2cfddc6/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/379641ec-84e7-4c48-925c-8240b2cfddc6/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute NEAR order book, live - Slug: kalshi-15-minute-near-order-book-live - Summary: **Measure quoted spreads and depth in Kalshi 15-minute NEAR direction markets.** This dataset records event-driven YES order book states for included NEAR contracts from 10 September 2026 onward, with best bid, best ask, total side depth a… - Page: https://mostlyright.md/datasets/kalshi-15-minute-near-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, near protocol, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:28:09.090Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-near-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-near-order-book-live/llms.txt Tables (1): - kalshi_near15m_orderbook (kalshi-near15m-orderbook) - tableId: 4703f5dd-26d8-4732-a4ea-2371e27e06f0 - version_id: 3b572e04-7193-4261-9a0e-98829044e5b4 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4703f5dd-26d8-4732-a4ea-2371e27e06f0/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4703f5dd-26d8-4732-a4ea-2371e27e06f0/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4703f5dd-26d8-4732-a4ea-2371e27e06f0/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4703f5dd-26d8-4732-a4ea-2371e27e06f0/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute Solana order book, live - Slug: kalshi-15-minute-solana-order-book-live - Summary: **Measure quoted spreads and depth in Kalshi 15-minute Solana direction markets.** This dataset records event-driven YES order book states for included SOL contracts from 10 September 2026 onward, with best bid, best ask, total side depth… - Page: https://mostlyright.md/datasets/kalshi-15-minute-solana-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, solana, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:27:57.651Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-solana-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-solana-order-book-live/llms.txt Tables (1): - kalshi_sol15m_orderbook (kalshi-sol15m-orderbook) - tableId: c0d17f03-e21d-4534-b7e7-8d6620e3543e - version_id: a13fadb8-452b-4eac-ac60-cf7c2af222c4 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/c0d17f03-e21d-4534-b7e7-8d6620e3543e/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/c0d17f03-e21d-4534-b7e7-8d6620e3543e/preview - Query: POST https://mostlyright.md/api/v2/public/tables/c0d17f03-e21d-4534-b7e7-8d6620e3543e/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/c0d17f03-e21d-4534-b7e7-8d6620e3543e/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute XRP order book, live - Slug: kalshi-15-minute-xrp-order-book-live - Summary: **Measure quoted spreads in Kalshi 15-minute XRP direction contracts.** This event-driven history records one-second YES order book states for XRP contracts with a resting YES bid since 10 September 2026. Use the ladders and depths to stud… - Page: https://mostlyright.md/datasets/kalshi-15-minute-xrp-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, xrp, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:27:44.842Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-xrp-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-xrp-order-book-live/llms.txt Tables (1): - kalshi_xrp15m_orderbook (kalshi-xrp15m-orderbook) - tableId: c6338332-365f-427a-8abe-97e7b3b24471 - version_id: 0f71fb8a-f24a-43f6-9aeb-c078b96c3101 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/c6338332-365f-427a-8abe-97e7b3b24471/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/c6338332-365f-427a-8abe-97e7b3b24471/preview - Query: POST https://mostlyright.md/api/v2/public/tables/c6338332-365f-427a-8abe-97e7b3b24471/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/c6338332-365f-427a-8abe-97e7b3b24471/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute Zcash order book, live - Slug: kalshi-15-minute-zcash-order-book-live - Summary: **Measure quoted spreads and depth in Kalshi 15-minute Zcash contracts.** This dataset records event-driven YES order-book states for ZEC up-or-down markets from 10 September 2026 onward. Use it to reconstruct second-level quoted books, co… - Page: https://mostlyright.md/datasets/kalshi-15-minute-zcash-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, zcash, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:27:32.707Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-zcash-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-zcash-order-book-live/llms.txt Tables (1): - kalshi_zec15m_orderbook (kalshi-zec15m-orderbook) - tableId: 53954c2f-f3c7-4ecd-91d9-c0f137776839 - version_id: bd5823a5-e136-4543-a19c-0f8fa89ab527 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/53954c2f-f3c7-4ecd-91d9-c0f137776839/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/53954c2f-f3c7-4ecd-91d9-c0f137776839/preview - Query: POST https://mostlyright.md/api/v2/public/tables/53954c2f-f3c7-4ecd-91d9-c0f137776839/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/53954c2f-f3c7-4ecd-91d9-c0f137776839/current (x-api-key: mr_use_…, Parquet) ### Kalshi 15-minute coin race order book, live - Slug: kalshi-15-minute-coin-race-order-book-live - Summary: **Compare Kalshi 15-minute coin race order books across possible winners.** This event-driven history records one-second book states for race outcomes with a resting YES bid since 10 September 2026. Use the YES ladders to compare liquidity… - Page: https://mostlyright.md/datasets/kalshi-15-minute-coin-race-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, coin race, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:27:22.253Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-15-minute-coin-race-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-15-minute-coin-race-order-book-live/llms.txt Tables (1): - kalshi_lead15m_orderbook (kalshi-lead15m-orderbook) - tableId: 188ea737-1803-4148-8750-d503bf9cede1 - version_id: 1d698cd1-250f-491f-96c6-1249700b3dbb - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/188ea737-1803-4148-8750-d503bf9cede1/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/188ea737-1803-4148-8750-d503bf9cede1/preview - Query: POST https://mostlyright.md/api/v2/public/tables/188ea737-1803-4148-8750-d503bf9cede1/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/188ea737-1803-4148-8750-d503bf9cede1/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly BNB price order book, live - Slug: kalshi-hourly-bnb-price-order-book-live - Summary: **Measure quoted spreads and depth across Kalshi hourly BNB price strikes.** This dataset records event-driven YES order-book states for open BNB threshold markets from 10 September 2026 onward. Use it to reconstruct second-level quoted bo… - Page: https://mostlyright.md/datasets/kalshi-hourly-bnb-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, bnb, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:27:10.457Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-bnb-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-bnb-price-order-book-live/llms.txt Tables (1): - kalshi_bnb1h_orderbook (kalshi-bnb1h-orderbook) - tableId: 3d8c5d16-da89-4bad-a5dc-4aaa12a33181 - version_id: 38ab785d-dc5f-457e-9a18-7a5f223052f3 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3d8c5d16-da89-4bad-a5dc-4aaa12a33181/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3d8c5d16-da89-4bad-a5dc-4aaa12a33181/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3d8c5d16-da89-4bad-a5dc-4aaa12a33181/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3d8c5d16-da89-4bad-a5dc-4aaa12a33181/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly BNB price range order book, live - Slug: kalshi-hourly-bnb-price-range-order-book-live - Summary: **Measure quoted liquidity in Kalshi hourly BNB price-range markets.** This dataset records event-driven YES order book states for open BNB closing-range bands from 2026-09-10 15:32 UTC onward. Use it to reconstruct quoted books at recorde… - Page: https://mostlyright.md/datasets/kalshi-hourly-bnb-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, bnb, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:27:00.856Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-bnb-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-bnb-price-range-order-book-live/llms.txt Tables (1): - kalshi_bnb1h_range_orderbook (kalshi-bnb1h-range-orderbook) - tableId: 1814398c-d1a7-4935-a3bd-019a06282ea7 - version_id: ad34bca5-dd6a-4ffa-947f-0eecb7371af3 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1814398c-d1a7-4935-a3bd-019a06282ea7/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1814398c-d1a7-4935-a3bd-019a06282ea7/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1814398c-d1a7-4935-a3bd-019a06282ea7/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1814398c-d1a7-4935-a3bd-019a06282ea7/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Bitcoin price range order book, live - Slug: kalshi-hourly-bitcoin-price-range-order-book-live - Summary: **Measure quoted liquidity across Kalshi hourly Bitcoin price ranges.** This dataset records event-driven YES order-book states for BTC range bands from 10 September 2026 onward. Use it to reconstruct second-level quoted books, compare spr… - Page: https://mostlyright.md/datasets/kalshi-hourly-bitcoin-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, bitcoin, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:26:50.427Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-bitcoin-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-bitcoin-price-range-order-book-live/llms.txt Tables (1): - kalshi_btc1h_range_orderbook (kalshi-btc1h-range-orderbook) - tableId: 64cef132-c5a3-4dae-9535-4ac1483a5ebe - version_id: d633adf9-f652-49fc-ad6d-9764776591f0 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/64cef132-c5a3-4dae-9535-4ac1483a5ebe/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/64cef132-c5a3-4dae-9535-4ac1483a5ebe/preview - Query: POST https://mostlyright.md/api/v2/public/tables/64cef132-c5a3-4dae-9535-4ac1483a5ebe/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/64cef132-c5a3-4dae-9535-4ac1483a5ebe/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Dogecoin price order book, live - Slug: kalshi-hourly-dogecoin-price-order-book-live - Summary: **Measure quoted spreads in Kalshi hourly Dogecoin price-threshold markets.** This event-driven history records one-second YES order book states for open DOGE strikes with a resting YES bid since 10 September 2026. Use the ladders and dept… - Page: https://mostlyright.md/datasets/kalshi-hourly-dogecoin-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, dogecoin, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:26:39.803Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-dogecoin-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-dogecoin-price-order-book-live/llms.txt Tables (1): - kalshi_doge1h_orderbook (kalshi-doge1h-orderbook) - tableId: ac63cef1-0f93-4055-92b3-99d2d470c218 - version_id: 6165be29-16c6-4627-ae44-599a29392276 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ac63cef1-0f93-4055-92b3-99d2d470c218/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ac63cef1-0f93-4055-92b3-99d2d470c218/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ac63cef1-0f93-4055-92b3-99d2d470c218/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ac63cef1-0f93-4055-92b3-99d2d470c218/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Dogecoin price range order book, live - Slug: kalshi-hourly-dogecoin-price-range-order-book-live - Summary: **Measure liquidity across Kalshi hourly Dogecoin price-range bands.** This event-driven history records one-second YES order book states for open DOGE bands with a resting YES bid since 10 September 2026. Use the ladders and depths to com… - Page: https://mostlyright.md/datasets/kalshi-hourly-dogecoin-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, dogecoin, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:26:27.687Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-dogecoin-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-dogecoin-price-range-order-book-live/llms.txt Tables (1): - kalshi_doge1h_range_orderbook (kalshi-doge1h-range-orderbook) - tableId: 28199d06-ade0-4b82-b7b0-e754e7b759ea - version_id: ac335b48-556a-462b-ba11-48a285a1bbb2 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/28199d06-ade0-4b82-b7b0-e754e7b759ea/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/28199d06-ade0-4b82-b7b0-e754e7b759ea/preview - Query: POST https://mostlyright.md/api/v2/public/tables/28199d06-ade0-4b82-b7b0-e754e7b759ea/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/28199d06-ade0-4b82-b7b0-e754e7b759ea/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Ethereum price order book, live - Slug: kalshi-hourly-ethereum-price-order-book-live - Summary: **Measure quoted liquidity in Kalshi hourly Ethereum strike markets.** This dataset records event-driven YES order book states for open ETH above-threshold contracts from 2026-09-10 15:30 UTC onward. Use it to reconstruct quoted books at r… - Page: https://mostlyright.md/datasets/kalshi-hourly-ethereum-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, ethereum, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:26:17.420Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-ethereum-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-ethereum-price-order-book-live/llms.txt Tables (1): - kalshi_eth1h_orderbook (kalshi-eth1h-orderbook) - tableId: 0a4573cd-83fe-48ae-83d0-7e7e95014ef4 - version_id: 5dee6ae1-65dc-449e-9b93-74a355ff0dab - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/0a4573cd-83fe-48ae-83d0-7e7e95014ef4/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/0a4573cd-83fe-48ae-83d0-7e7e95014ef4/preview - Query: POST https://mostlyright.md/api/v2/public/tables/0a4573cd-83fe-48ae-83d0-7e7e95014ef4/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/0a4573cd-83fe-48ae-83d0-7e7e95014ef4/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Ethereum price range order book, live - Slug: kalshi-hourly-ethereum-price-range-order-book-live - Summary: **Measure quoted liquidity in Kalshi hourly Ethereum price-range markets.** This dataset records event-driven YES order book states for open ETH closing-range bands from 2026-09-10 15:32 UTC onward. Use it to reconstruct quoted books at re… - Page: https://mostlyright.md/datasets/kalshi-hourly-ethereum-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, ethereum, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:26:05.576Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-ethereum-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-ethereum-price-range-order-book-live/llms.txt Tables (1): - kalshi_eth1h_range_orderbook (kalshi-eth1h-range-orderbook) - tableId: e3456661-8fde-401d-a338-b83d5f084089 - version_id: e74d8e89-da81-43aa-b544-b3118ba571ab - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/e3456661-8fde-401d-a338-b83d5f084089/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/e3456661-8fde-401d-a338-b83d5f084089/preview - Query: POST https://mostlyright.md/api/v2/public/tables/e3456661-8fde-401d-a338-b83d5f084089/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/e3456661-8fde-401d-a338-b83d5f084089/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Hyperliquid price order book, live - Slug: kalshi-hourly-hyperliquid-price-order-book-live - Summary: **Measure quoted liquidity in Kalshi hourly Hyperliquid price-threshold markets.** This dataset records event-driven YES-side order book states for open HYPE threshold contracts from September 10, 2026 onward. Use it to reconstruct quoted… - Page: https://mostlyright.md/datasets/kalshi-hourly-hyperliquid-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, hyperliquid, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:25:55.092Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-hyperliquid-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-hyperliquid-price-order-book-live/llms.txt Tables (1): - kalshi_hype1h_orderbook (kalshi-hype1h-orderbook) - tableId: d1c5d8d1-e50f-4e3a-93d6-36299af40e72 - version_id: 1044b7ae-c676-4fc3-9fa9-c215b103b07b - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/d1c5d8d1-e50f-4e3a-93d6-36299af40e72/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/d1c5d8d1-e50f-4e3a-93d6-36299af40e72/preview - Query: POST https://mostlyright.md/api/v2/public/tables/d1c5d8d1-e50f-4e3a-93d6-36299af40e72/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/d1c5d8d1-e50f-4e3a-93d6-36299af40e72/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Hyperliquid price range order book, live - Slug: kalshi-hourly-hyperliquid-price-range-order-book-live - Summary: **Measure quoted liquidity in Kalshi hourly Hyperliquid price-range markets.** This dataset records event-driven YES-side order book states for open HYPE closing-price bands from September 10, 2026 onward. Use it to reconstruct quoted book… - Page: https://mostlyright.md/datasets/kalshi-hourly-hyperliquid-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, hyperliquid, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:25:43.982Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-hyperliquid-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-hyperliquid-price-range-order-book-live/llms.txt Tables (1): - kalshi_hype1h_range_orderbook (kalshi-hype1h-range-orderbook) - tableId: eb650eec-2c8b-49f8-96a8-466aca26bc1a - version_id: 4c23f2fe-38f6-4bce-ac41-d2dd9d7a1b3d - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/eb650eec-2c8b-49f8-96a8-466aca26bc1a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/eb650eec-2c8b-49f8-96a8-466aca26bc1a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/eb650eec-2c8b-49f8-96a8-466aca26bc1a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/eb650eec-2c8b-49f8-96a8-466aca26bc1a/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Solana price order book, live - Slug: kalshi-hourly-solana-price-order-book-live - Summary: **Measure quoted spreads in Kalshi hourly Solana price-threshold markets.** This event-driven history records one-second YES order book states for open SOL strikes with a resting YES bid since 10 September 2026. Use the ladders and depths… - Page: https://mostlyright.md/datasets/kalshi-hourly-solana-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, solana, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:25:02.760Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-solana-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-solana-price-order-book-live/llms.txt Tables (1): - kalshi_sol1h_orderbook (kalshi-sol1h-orderbook) - tableId: 4f373852-06d7-4c33-a9fa-07245984afeb - version_id: 8c9da38a-c0e0-4c1c-8bbd-953723dad17d - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4f373852-06d7-4c33-a9fa-07245984afeb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4f373852-06d7-4c33-a9fa-07245984afeb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4f373852-06d7-4c33-a9fa-07245984afeb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4f373852-06d7-4c33-a9fa-07245984afeb/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly Solana price range order book, live - Slug: kalshi-hourly-solana-price-range-order-book-live - Summary: **Measure quoted liquidity in Kalshi hourly Solana price-range markets.** This dataset records event-driven YES order book states for open SOL closing-range bands from 2026-09-10 15:33 UTC onward. Use it to reconstruct quoted books at reco… - Page: https://mostlyright.md/datasets/kalshi-hourly-solana-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, solana, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:24:52.254Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-solana-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-solana-price-range-order-book-live/llms.txt Tables (1): - kalshi_sol1h_range_orderbook (kalshi-sol1h-range-orderbook) - tableId: f075f920-c866-4b79-845d-b2ea509b2592 - version_id: 5540c6c5-2c59-4042-9331-3e688ccf4921 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f075f920-c866-4b79-845d-b2ea509b2592/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f075f920-c866-4b79-845d-b2ea509b2592/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f075f920-c866-4b79-845d-b2ea509b2592/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f075f920-c866-4b79-845d-b2ea509b2592/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly XRP price order book, live - Slug: kalshi-hourly-xrp-price-order-book-live - Summary: **Measure quoted spreads in Kalshi hourly XRP price-threshold markets.** This event-driven history records one-second YES order book states for open XRP strikes with a resting YES bid since 10 September 2026. Use the ladders and depths to… - Page: https://mostlyright.md/datasets/kalshi-hourly-xrp-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, xrp, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:24:42.013Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-xrp-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-xrp-price-order-book-live/llms.txt Tables (1): - kalshi_xrp1h_orderbook (kalshi-xrp1h-orderbook) - tableId: 6d6e673d-7e39-4da0-a68d-bfa2ff3d375d - version_id: 599df408-74d1-4a42-b780-d8681d9e3e44 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/6d6e673d-7e39-4da0-a68d-bfa2ff3d375d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6d6e673d-7e39-4da0-a68d-bfa2ff3d375d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6d6e673d-7e39-4da0-a68d-bfa2ff3d375d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6d6e673d-7e39-4da0-a68d-bfa2ff3d375d/current (x-api-key: mr_use_…, Parquet) ### Kalshi hourly XRP price range order book, live - Slug: kalshi-hourly-xrp-price-range-order-book-live - Summary: **Measure liquidity across Kalshi hourly XRP price-range bands.** This event-driven history records one-second YES order book states for open XRP bands with a resting YES bid since 10 September 2026. Use the ladders and depths to compare s… - Page: https://mostlyright.md/datasets/kalshi-hourly-xrp-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, xrp, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:24:29.202Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-hourly-xrp-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-hourly-xrp-price-range-order-book-live/llms.txt Tables (1): - kalshi_xrp1h_range_orderbook (kalshi-xrp1h-range-orderbook) - tableId: ec4fb38d-df4f-4431-b5eb-123d3ee855a4 - version_id: 391ad4ca-da3a-4c3d-a7ff-31b5fb682430 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ec4fb38d-df4f-4431-b5eb-123d3ee855a4/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ec4fb38d-df4f-4431-b5eb-123d3ee855a4/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ec4fb38d-df4f-4431-b5eb-123d3ee855a4/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ec4fb38d-df4f-4431-b5eb-123d3ee855a4/current (x-api-key: mr_use_…, Parquet) ### Kalshi daily Shiba Inu price order book, live - Slug: kalshi-daily-shiba-inu-price-order-book-live - Summary: **Measure quoted spreads and depth across Kalshi daily Shiba Inu threshold markets.** This dataset records event-driven YES order book states for open SHIB price-line strikes from 10 September 2026 onward, with best bid, best ask, total si… - Page: https://mostlyright.md/datasets/kalshi-daily-shiba-inu-price-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, shiba inu, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:24:17.420Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-daily-shiba-inu-price-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-daily-shiba-inu-price-order-book-live/llms.txt Tables (1): - kalshi_shib1d_orderbook (kalshi-shib1d-orderbook) - tableId: aa8ffcdd-f317-463c-9987-f5a573d3abe9 - version_id: 53d1167b-dc8c-4061-aa19-1738265273e5 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/aa8ffcdd-f317-463c-9987-f5a573d3abe9/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/aa8ffcdd-f317-463c-9987-f5a573d3abe9/preview - Query: POST https://mostlyright.md/api/v2/public/tables/aa8ffcdd-f317-463c-9987-f5a573d3abe9/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/aa8ffcdd-f317-463c-9987-f5a573d3abe9/current (x-api-key: mr_use_…, Parquet) ### Kalshi daily Shiba Inu price range order book, live - Slug: kalshi-daily-shiba-inu-price-range-order-book-live - Summary: **Measure quoted spreads and depth across Kalshi daily Shiba Inu price-band markets.** This dataset records event-driven YES order book states for open SHIB closing-price bands from 10 September 2026 onward, with best bid, best ask, total… - Page: https://mostlyright.md/datasets/kalshi-daily-shiba-inu-price-range-order-book-live - Publisher: mostlyrightmd - Topics: prediction markets, kalshi, shiba inu, order book, cryptocurrency, limit order book - Published: 2026-09-12T10:24:06.714Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kalshi-daily-shiba-inu-price-range-order-book-live - This dataset as Markdown: https://mostlyright.md/datasets/kalshi-daily-shiba-inu-price-range-order-book-live/llms.txt Tables (1): - kalshi_shib1d_range_orderbook (kalshi-shib1d-range-orderbook) - tableId: a76b3cac-bbf9-451b-b10b-b6ae9f074474 - version_id: 70adb13f-7eac-4121-87c9-2412e42940cf - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/a76b3cac-bbf9-451b-b10b-b6ae9f074474/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/a76b3cac-bbf9-451b-b10b-b6ae9f074474/preview - Query: POST https://mostlyright.md/api/v2/public/tables/a76b3cac-bbf9-451b-b10b-b6ae9f074474/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/a76b3cac-bbf9-451b-b10b-b6ae9f074474/current (x-api-key: mr_use_…, Parquet) ### European harvests and weather, 2000–2024 - Slug: european-harvests-and-weather-20002024 - Summary: **Explore how European crop yields vary with early-season weather and FAO price context.** This fixed snapshot covers five crops across 69 regions from 2000 to 2024, with one row per region, crop, and harvest year. Use it for regional yiel… - Page: https://mostlyright.md/datasets/european-harvests-and-weather-20002024 - Publisher: mostlyrightmd - Topics: agriculture, europe, crop yields, eurostat, nasa power, fao, harvest risk - Published: 2026-09-12T09:15:59.330Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/european-harvests-and-weather-20002024 - This dataset as Markdown: https://mostlyright.md/datasets/european-harvests-and-weather-20002024/llms.txt Tables (1): - regional_harvest_weather (regional-harvest-weather) - tableId: 994c0256-368f-4067-a953-2d9d5f194d28 - version_id: 7f6f6151-3332-45ae-ac76-2780508a28e5 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/994c0256-368f-4067-a953-2d9d5f194d28/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/994c0256-368f-4067-a953-2d9d5f194d28/preview - Query: POST https://mostlyright.md/api/v2/public/tables/994c0256-368f-4067-a953-2d9d5f194d28/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/994c0256-368f-4067-a953-2d9d5f194d28/current (x-api-key: mr_use_…, Parquet) ### US Weather Reports and Daily Highs in 20 Cities - Slug: us-weather-reports-and-daily-highs-in-20-cities - Summary: **Compare airport weather reports with official daily highs and lows in 20 United States cities.** Each city has its own table of METAR and SPECI observations since 2020, joined to the National Weather Service daily result for that station… - Page: https://mostlyright.md/datasets/us-weather-reports-and-daily-highs-in-20-cities - Publisher: mostlyrightmd - Topics: weather, united states, metar, national weather service, daily high temperature, hourly observations, 20 cities - Published: 2026-09-12T09:15:44.352Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/us-weather-reports-and-daily-highs-in-20-cities - This dataset as Markdown: https://mostlyright.md/datasets/us-weather-reports-and-daily-highs-in-20-cities/llms.txt Tables (20): - reports_kphl (reports-kphl) - tableId: f38ee271-11bc-4803-a2fc-37287440e519 - version_id: 0be612a9-56e7-4d8e-b92d-ae97eb0cdf0e - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f38ee271-11bc-4803-a2fc-37287440e519/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f38ee271-11bc-4803-a2fc-37287440e519/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f38ee271-11bc-4803-a2fc-37287440e519/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f38ee271-11bc-4803-a2fc-37287440e519/current (x-api-key: mr_use_…, Parquet) - reports_khou (reports-khou) - tableId: 9382176f-6ad8-47fe-b4b6-8c423a09ac1f - version_id: 85d18565-7613-49b4-baa8-ecb181908c8a - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/9382176f-6ad8-47fe-b4b6-8c423a09ac1f/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/9382176f-6ad8-47fe-b4b6-8c423a09ac1f/preview - Query: POST https://mostlyright.md/api/v2/public/tables/9382176f-6ad8-47fe-b4b6-8c423a09ac1f/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/9382176f-6ad8-47fe-b4b6-8c423a09ac1f/current (x-api-key: mr_use_…, Parquet) - reports_kdca (reports-kdca) - tableId: b13df66e-c104-4c12-8b18-71c5f30b775a - version_id: 35edc845-a468-4e7e-b5d8-cbf637218f55 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b13df66e-c104-4c12-8b18-71c5f30b775a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b13df66e-c104-4c12-8b18-71c5f30b775a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b13df66e-c104-4c12-8b18-71c5f30b775a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b13df66e-c104-4c12-8b18-71c5f30b775a/current (x-api-key: mr_use_…, Parquet) - reports_knyc (reports-knyc) - tableId: cdc8c2aa-4ccd-43da-ac53-90b2850121cb - version_id: ddf240a1-21fd-4f98-a790-51899226b8a5 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/cdc8c2aa-4ccd-43da-ac53-90b2850121cb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/cdc8c2aa-4ccd-43da-ac53-90b2850121cb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/cdc8c2aa-4ccd-43da-ac53-90b2850121cb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/cdc8c2aa-4ccd-43da-ac53-90b2850121cb/current (x-api-key: mr_use_…, Parquet) - reports_katl (reports-katl) - tableId: 6509f331-30e7-4593-bae6-a1f7aaba0159 - version_id: 2dcc0868-31ee-4fdc-8e31-a349a91a7813 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/6509f331-30e7-4593-bae6-a1f7aaba0159/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6509f331-30e7-4593-bae6-a1f7aaba0159/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6509f331-30e7-4593-bae6-a1f7aaba0159/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6509f331-30e7-4593-bae6-a1f7aaba0159/current (x-api-key: mr_use_…, Parquet) - reports_kphx (reports-kphx) - tableId: 77031a86-8bbb-4217-a7a0-2758ac77d561 - version_id: fbb4bbc7-6490-482c-ae2f-bdfbe329d187 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/77031a86-8bbb-4217-a7a0-2758ac77d561/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/77031a86-8bbb-4217-a7a0-2758ac77d561/preview - Query: POST https://mostlyright.md/api/v2/public/tables/77031a86-8bbb-4217-a7a0-2758ac77d561/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/77031a86-8bbb-4217-a7a0-2758ac77d561/current (x-api-key: mr_use_…, Parquet) - reports_ksea (reports-ksea) - tableId: da9c5982-e772-414c-bcc5-e35e816420fc - version_id: b99c53b0-b07d-4058-b2c3-916fa4dae2cd - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/da9c5982-e772-414c-bcc5-e35e816420fc/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/da9c5982-e772-414c-bcc5-e35e816420fc/preview - Query: POST https://mostlyright.md/api/v2/public/tables/da9c5982-e772-414c-bcc5-e35e816420fc/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/da9c5982-e772-414c-bcc5-e35e816420fc/current (x-api-key: mr_use_…, Parquet) - reports_ksfo (reports-ksfo) - tableId: f290a279-c39c-4bc7-8e04-974e0bcd480a - version_id: c1c20d00-1c17-44ea-b008-d57b30fb92f1 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f290a279-c39c-4bc7-8e04-974e0bcd480a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f290a279-c39c-4bc7-8e04-974e0bcd480a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f290a279-c39c-4bc7-8e04-974e0bcd480a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f290a279-c39c-4bc7-8e04-974e0bcd480a/current (x-api-key: mr_use_…, Parquet) - reports_kdfw (reports-kdfw) - tableId: ed9260f8-0253-423f-9ba1-ce58a8632702 - version_id: 9d8c6850-b07c-459f-a572-be7dd19bb413 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ed9260f8-0253-423f-9ba1-ce58a8632702/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ed9260f8-0253-423f-9ba1-ce58a8632702/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ed9260f8-0253-423f-9ba1-ce58a8632702/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ed9260f8-0253-423f-9ba1-ce58a8632702/current (x-api-key: mr_use_…, Parquet) - reports_kmsp (reports-kmsp) - tableId: aea40995-a418-4eee-a004-bd0b23ced5cd - version_id: cbbc395f-eb0b-4407-9030-9aec5b163d45 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/aea40995-a418-4eee-a004-bd0b23ced5cd/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/aea40995-a418-4eee-a004-bd0b23ced5cd/preview - Query: POST https://mostlyright.md/api/v2/public/tables/aea40995-a418-4eee-a004-bd0b23ced5cd/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/aea40995-a418-4eee-a004-bd0b23ced5cd/current (x-api-key: mr_use_…, Parquet) - reports_ksat (reports-ksat) - tableId: bd6885b8-9935-4cd2-bcc7-620fc83d9ff0 - version_id: b38eea8d-f425-4c67-8ae5-ae336686082f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/bd6885b8-9935-4cd2-bcc7-620fc83d9ff0/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/bd6885b8-9935-4cd2-bcc7-620fc83d9ff0/preview - Query: POST https://mostlyright.md/api/v2/public/tables/bd6885b8-9935-4cd2-bcc7-620fc83d9ff0/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/bd6885b8-9935-4cd2-bcc7-620fc83d9ff0/current (x-api-key: mr_use_…, Parquet) - reports_kden (reports-kden) - tableId: 779b3250-90d2-4d72-9d90-e7275da1c2c0 - version_id: b365e78e-9c6b-4c68-96ca-e57405be125f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/779b3250-90d2-4d72-9d90-e7275da1c2c0/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/779b3250-90d2-4d72-9d90-e7275da1c2c0/preview - Query: POST https://mostlyright.md/api/v2/public/tables/779b3250-90d2-4d72-9d90-e7275da1c2c0/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/779b3250-90d2-4d72-9d90-e7275da1c2c0/current (x-api-key: mr_use_…, Parquet) - reports_klax (reports-klax) - tableId: 1d64b41d-ffdc-4b0d-b6b4-1a1a03ec8d20 - version_id: c5e3fff4-a9e2-4d3f-b9a7-836b47e4b920 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1d64b41d-ffdc-4b0d-b6b4-1a1a03ec8d20/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1d64b41d-ffdc-4b0d-b6b4-1a1a03ec8d20/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1d64b41d-ffdc-4b0d-b6b4-1a1a03ec8d20/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1d64b41d-ffdc-4b0d-b6b4-1a1a03ec8d20/current (x-api-key: mr_use_…, Parquet) - reports_kmdw (reports-kmdw) - tableId: 1933e0be-5f4a-47e9-9085-f95a898a64fa - version_id: edf89e20-4bea-42ab-98ec-f71546346daa - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1933e0be-5f4a-47e9-9085-f95a898a64fa/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1933e0be-5f4a-47e9-9085-f95a898a64fa/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1933e0be-5f4a-47e9-9085-f95a898a64fa/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1933e0be-5f4a-47e9-9085-f95a898a64fa/current (x-api-key: mr_use_…, Parquet) - reports_kokc (reports-kokc) - tableId: fdfd9aee-c524-409e-b387-23a11aae653d - version_id: 88fffcfa-2b0f-4035-8121-d626d397abaf - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/fdfd9aee-c524-409e-b387-23a11aae653d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/fdfd9aee-c524-409e-b387-23a11aae653d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/fdfd9aee-c524-409e-b387-23a11aae653d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/fdfd9aee-c524-409e-b387-23a11aae653d/current (x-api-key: mr_use_…, Parquet) - reports_kbos (reports-kbos) - tableId: d6fb2d0f-1843-45fe-a3b2-e9217a35cb1c - version_id: 080350f3-51f2-4ce3-b070-31115f7ef324 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/d6fb2d0f-1843-45fe-a3b2-e9217a35cb1c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/d6fb2d0f-1843-45fe-a3b2-e9217a35cb1c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/d6fb2d0f-1843-45fe-a3b2-e9217a35cb1c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/d6fb2d0f-1843-45fe-a3b2-e9217a35cb1c/current (x-api-key: mr_use_…, Parquet) - reports_kmsy (reports-kmsy) - tableId: b7e704f9-a128-4ff0-bded-52d062d2406e - version_id: e7a8aa8b-4cff-4d1d-8b0f-8def78179854 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b7e704f9-a128-4ff0-bded-52d062d2406e/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b7e704f9-a128-4ff0-bded-52d062d2406e/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b7e704f9-a128-4ff0-bded-52d062d2406e/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b7e704f9-a128-4ff0-bded-52d062d2406e/current (x-api-key: mr_use_…, Parquet) - reports_klas (reports-klas) - tableId: 4b712d4d-ca7c-41f4-a79b-1450b638cdca - version_id: 73c6f592-400e-468d-9a7d-1f86dcdc70dd - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4b712d4d-ca7c-41f4-a79b-1450b638cdca/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4b712d4d-ca7c-41f4-a79b-1450b638cdca/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4b712d4d-ca7c-41f4-a79b-1450b638cdca/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4b712d4d-ca7c-41f4-a79b-1450b638cdca/current (x-api-key: mr_use_…, Parquet) - reports_kmia (reports-kmia) - tableId: 7e9551c7-f632-4c12-ada9-c261299ba53f - version_id: 2bf929fa-28b8-4ccd-9774-e6824bce8884 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/7e9551c7-f632-4c12-ada9-c261299ba53f/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/7e9551c7-f632-4c12-ada9-c261299ba53f/preview - Query: POST https://mostlyright.md/api/v2/public/tables/7e9551c7-f632-4c12-ada9-c261299ba53f/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/7e9551c7-f632-4c12-ada9-c261299ba53f/current (x-api-key: mr_use_…, Parquet) - reports_kaus (reports-kaus) - tableId: 60849d5a-6ac3-410a-8be5-36286f8590d7 - version_id: 70f7a9b7-08c0-49ac-89d0-08a78f972805 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/60849d5a-6ac3-410a-8be5-36286f8590d7/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/60849d5a-6ac3-410a-8be5-36286f8590d7/preview - Query: POST https://mostlyright.md/api/v2/public/tables/60849d5a-6ac3-410a-8be5-36286f8590d7/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/60849d5a-6ac3-410a-8be5-36286f8590d7/current (x-api-key: mr_use_…, Parquet) ### Sydney weather reports and daily highs since 2020 - Slug: sydney-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Sydney weather, report by report.** This dataset pairs weather reports from Sydney Kingsford Smith Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or ev… - Page: https://mostlyright.md/datasets/sydney-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, sydney, australia, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:21:00.946Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/sydney-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/sydney-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_yssy (reports-yssy) - tableId: 1da2e49c-e160-463b-8bcc-a6657e1a5b7d - version_id: e1cab814-01a4-42fa-919b-e2fdef669a50 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1da2e49c-e160-463b-8bcc-a6657e1a5b7d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1da2e49c-e160-463b-8bcc-a6657e1a5b7d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1da2e49c-e160-463b-8bcc-a6657e1a5b7d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1da2e49c-e160-463b-8bcc-a6657e1a5b7d/current (x-api-key: mr_use_…, Parquet) ### Kuala Lumpur weather reports and daily highs since 2020 - Slug: kuala-lumpur-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Kuala Lumpur weather, report by report.** This dataset pairs weather reports from Kuala Lumpur International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the air… - Page: https://mostlyright.md/datasets/kuala-lumpur-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, kuala lumpur, malaysia, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:20:51.211Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/kuala-lumpur-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/kuala-lumpur-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_wmkk (reports-wmkk) - tableId: 8e98229e-8ecd-41de-9707-c956d0df08cc - version_id: cd1a69b6-1532-453c-957f-11c53f5ccf33 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/8e98229e-8ecd-41de-9707-c956d0df08cc/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/8e98229e-8ecd-41de-9707-c956d0df08cc/preview - Query: POST https://mostlyright.md/api/v2/public/tables/8e98229e-8ecd-41de-9707-c956d0df08cc/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/8e98229e-8ecd-41de-9707-c956d0df08cc/current (x-api-key: mr_use_…, Parquet) ### Lucknow weather reports and daily highs since 2020 - Slug: lucknow-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Lucknow weather, report by report.** This dataset pairs weather reports from Chaudhary Charan Singh International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at th… - Page: https://mostlyright.md/datasets/lucknow-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, lucknow, india, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:20:46.243Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/lucknow-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/lucknow-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_vilk (reports-vilk) - tableId: 00ec2ef3-527f-40db-8cf7-3fd65dc47a3c - version_id: b7693c29-7c75-4f89-b86b-619af2cd9af8 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/00ec2ef3-527f-40db-8cf7-3fd65dc47a3c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/00ec2ef3-527f-40db-8cf7-3fd65dc47a3c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/00ec2ef3-527f-40db-8cf7-3fd65dc47a3c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/00ec2ef3-527f-40db-8cf7-3fd65dc47a3c/current (x-api-key: mr_use_…, Parquet) ### Hong Kong weather reports and daily highs since 2020 - Slug: hong-kong-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Hong Kong weather, report by report.** This dataset pairs weather reports from Hong Kong International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/hong-kong-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, hong kong, china, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:20:41.858Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/hong-kong-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/hong-kong-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_vhhh (reports-vhhh) - tableId: ca0478fa-cc33-447f-b4fb-2b975c800e98 - version_id: d573d356-f805-49b0-be7f-74a2b54824dd - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ca0478fa-cc33-447f-b4fb-2b975c800e98/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ca0478fa-cc33-447f-b4fb-2b975c800e98/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ca0478fa-cc33-447f-b4fb-2b975c800e98/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ca0478fa-cc33-447f-b4fb-2b975c800e98/current (x-api-key: mr_use_…, Parquet) ### Mumbai weather reports and daily highs since 2020 - Slug: mumbai-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Mumbai weather, report by report.** This dataset pairs weather reports from Chhatrapati Shivaji Maharaj International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions a… - Page: https://mostlyright.md/datasets/mumbai-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, mumbai, india, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:20:37.386Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/mumbai-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/mumbai-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_vabb (reports-vabb) - tableId: 963abb05-64d0-4725-aa35-2d5c46dc2eb1 - version_id: 6700f1b1-334c-4336-9228-0577ed76f143 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/963abb05-64d0-4725-aa35-2d5c46dc2eb1/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/963abb05-64d0-4725-aa35-2d5c46dc2eb1/preview - Query: POST https://mostlyright.md/api/v2/public/tables/963abb05-64d0-4725-aa35-2d5c46dc2eb1/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/963abb05-64d0-4725-aa35-2d5c46dc2eb1/current (x-api-key: mr_use_…, Parquet) ### Moscow weather reports and daily highs since 2020 - Slug: moscow-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Moscow weather, report by report.** This dataset pairs weather reports from Sheremetyevo International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/moscow-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, moscow, russia, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:20:32.983Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/moscow-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/moscow-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_uuee (reports-uuee) - tableId: e0768f4a-45d1-47f4-bee2-2fb01d259332 - version_id: 2288c411-534f-4a60-8ed5-00ff102f6a4f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/e0768f4a-45d1-47f4-bee2-2fb01d259332/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/e0768f4a-45d1-47f4-bee2-2fb01d259332/preview - Query: POST https://mostlyright.md/api/v2/public/tables/e0768f4a-45d1-47f4-bee2-2fb01d259332/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/e0768f4a-45d1-47f4-bee2-2fb01d259332/current (x-api-key: mr_use_…, Parquet) ### Trenton weather reports and daily highs since 2020 - Slug: trenton-weather-reports-and-daily-highs-since-2020 - Summary: **Check Trenton weather reports against official daily highs and lows.** This dataset pairs Trenton-Mercer Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate daily… - Page: https://mostlyright.md/datasets/trenton-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, trenton, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:20:28.641Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/trenton-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/trenton-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kttn (reports-kttn) - tableId: 2876a712-7b35-48a7-8b69-e3f26106e115 - version_id: 892fde75-e0f1-4ef6-8cdf-c8ea322acc4b - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/2876a712-7b35-48a7-8b69-e3f26106e115/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2876a712-7b35-48a7-8b69-e3f26106e115/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2876a712-7b35-48a7-8b69-e3f26106e115/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2876a712-7b35-48a7-8b69-e3f26106e115/current (x-api-key: mr_use_…, Parquet) ### San Francisco weather reports and daily highs since 2020 - Slug: san-francisco-weather-reports-and-daily-highs-since-2020 - Summary: **Check San Francisco weather reports against official daily highs and lows.** This dataset pairs San Francisco International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past condition… - Page: https://mostlyright.md/datasets/san-francisco-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, san francisco, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:20:24.313Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/san-francisco-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/san-francisco-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ksfo (reports-ksfo) - tableId: 1b3cdb1e-256b-446b-b809-ce66260c762a - version_id: 1451c323-807b-40b7-96c3-71ffb5d2d82f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1b3cdb1e-256b-446b-b809-ce66260c762a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1b3cdb1e-256b-446b-b809-ce66260c762a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1b3cdb1e-256b-446b-b809-ce66260c762a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1b3cdb1e-256b-446b-b809-ce66260c762a/current (x-api-key: mr_use_…, Parquet) ### Seattle weather reports and daily highs since 2020 - Slug: seattle-weather-reports-and-daily-highs-since-2020 - Summary: **Check Seattle weather reports against official daily highs and lows.** This dataset pairs Seattle-Tacoma International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or… - Page: https://mostlyright.md/datasets/seattle-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, seattle, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:20:20.063Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/seattle-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/seattle-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ksea (reports-ksea) - tableId: bf090b93-e7d2-4d6f-878d-b3d870368acd - version_id: 7e288db8-f6b0-4133-8bf2-84dd01d9d7fd - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/bf090b93-e7d2-4d6f-878d-b3d870368acd/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/bf090b93-e7d2-4d6f-878d-b3d870368acd/preview - Query: POST https://mostlyright.md/api/v2/public/tables/bf090b93-e7d2-4d6f-878d-b3d870368acd/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/bf090b93-e7d2-4d6f-878d-b3d870368acd/current (x-api-key: mr_use_…, Parquet) ### Louisville weather reports and daily highs since 2020 - Slug: louisville-weather-reports-and-daily-highs-since-2020 - Summary: **Check Louisville weather reports against official daily highs and lows.** This dataset pairs Louisville Muhammad Ali International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past co… - Page: https://mostlyright.md/datasets/louisville-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, louisville, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:20:15.862Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/louisville-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/louisville-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ksdf (reports-ksdf) - tableId: 3b2d8af2-6a6c-4965-bc18-90d91a366e10 - version_id: b0a15004-980b-4f49-af0b-1ab72b2f53ea - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3b2d8af2-6a6c-4965-bc18-90d91a366e10/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3b2d8af2-6a6c-4965-bc18-90d91a366e10/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3b2d8af2-6a6c-4965-bc18-90d91a366e10/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3b2d8af2-6a6c-4965-bc18-90d91a366e10/current (x-api-key: mr_use_…, Parquet) ### São Paulo weather reports and daily highs since 2020 - Slug: sao-paulo-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct São Paulo weather, report by report.** This dataset pairs weather reports from Guarulhos International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/sao-paulo-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, sao paulo, brazil, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:20:11.602Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/sao-paulo-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/sao-paulo-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_sbgr (reports-sbgr) - tableId: 1b1ee9aa-05ff-4c4d-ba76-9169766cfd8a - version_id: 09701640-46cb-473c-bca2-7379ee2a0ea0 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1b1ee9aa-05ff-4c4d-ba76-9169766cfd8a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1b1ee9aa-05ff-4c4d-ba76-9169766cfd8a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1b1ee9aa-05ff-4c4d-ba76-9169766cfd8a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1b1ee9aa-05ff-4c4d-ba76-9169766cfd8a/current (x-api-key: mr_use_…, Parquet) ### San Antonio weather reports and daily highs since 2020 - Slug: san-antonio-weather-reports-and-daily-highs-since-2020 - Summary: **Check San Antonio weather reports against official daily highs and lows.** This dataset pairs San Antonio International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or… - Page: https://mostlyright.md/datasets/san-antonio-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, san antonio, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:20:07.247Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/san-antonio-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/san-antonio-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ksat (reports-ksat) - tableId: 3fd6a94f-c4ae-43ca-ac1f-5df88a82ff2e - version_id: 32e5e685-5874-41a8-ba6f-aabe1f97e40e - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3fd6a94f-c4ae-43ca-ac1f-5df88a82ff2e/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3fd6a94f-c4ae-43ca-ac1f-5df88a82ff2e/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3fd6a94f-c4ae-43ca-ac1f-5df88a82ff2e/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3fd6a94f-c4ae-43ca-ac1f-5df88a82ff2e/current (x-api-key: mr_use_…, Parquet) ### San Diego weather reports and daily highs since 2020 - Slug: san-diego-weather-reports-and-daily-highs-since-2020 - Summary: **Check San Diego weather reports against official daily highs and lows.** This dataset pairs San Diego International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or eva… - Page: https://mostlyright.md/datasets/san-diego-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, san diego, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:20:02.555Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/san-diego-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/san-diego-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ksan (reports-ksan) - tableId: b30066f1-b80c-48dc-b858-3643f6fd39eb - version_id: ae85da3e-714f-4732-ad30-c50d76b993a0 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b30066f1-b80c-48dc-b858-3643f6fd39eb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b30066f1-b80c-48dc-b858-3643f6fd39eb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b30066f1-b80c-48dc-b858-3643f6fd39eb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b30066f1-b80c-48dc-b858-3643f6fd39eb/current (x-api-key: mr_use_…, Parquet) ### Buenos Aires weather reports and daily highs since 2020 - Slug: buenos-aires-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Buenos Aires weather, report by report.** This dataset pairs weather reports from Ezeiza International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/buenos-aires-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, buenos aires, argentina, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:57.938Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/buenos-aires-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/buenos-aires-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_saez (reports-saez) - tableId: 82daa2a9-b347-4f99-9149-bb903f9f16a5 - version_id: f665d7f4-8825-465e-8a2d-c8619431cca1 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/82daa2a9-b347-4f99-9149-bb903f9f16a5/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/82daa2a9-b347-4f99-9149-bb903f9f16a5/preview - Query: POST https://mostlyright.md/api/v2/public/tables/82daa2a9-b347-4f99-9149-bb903f9f16a5/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/82daa2a9-b347-4f99-9149-bb903f9f16a5/current (x-api-key: mr_use_…, Parquet) ### Manila weather reports and daily highs since 2020 - Slug: manila-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Manila weather, report by report.** This dataset pairs weather reports from Ninoy Aquino International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/manila-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, manila, philippines, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:53.268Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/manila-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/manila-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_rpll (reports-rpll) - tableId: 1b106959-405a-49a6-8634-bd60e666b826 - version_id: 85060727-231d-458d-9133-e9b2f2b726ed - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/1b106959-405a-49a6-8634-bd60e666b826/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/1b106959-405a-49a6-8634-bd60e666b826/preview - Query: POST https://mostlyright.md/api/v2/public/tables/1b106959-405a-49a6-8634-bd60e666b826/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/1b106959-405a-49a6-8634-bd60e666b826/current (x-api-key: mr_use_…, Parquet) ### Seoul weather reports and daily highs since 2020 - Slug: seoul-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Seoul weather, report by report.** This dataset pairs weather reports from Incheon International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or eval… - Page: https://mostlyright.md/datasets/seoul-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, seoul, south korea, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:48.684Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/seoul-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/seoul-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_rksi (reports-rksi) - tableId: 5a225855-ffc7-4381-bf37-f76e4208e020 - version_id: 39913846-c685-4322-9525-e378e9dd5280 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/5a225855-ffc7-4381-bf37-f76e4208e020/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/5a225855-ffc7-4381-bf37-f76e4208e020/preview - Query: POST https://mostlyright.md/api/v2/public/tables/5a225855-ffc7-4381-bf37-f76e4208e020/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/5a225855-ffc7-4381-bf37-f76e4208e020/current (x-api-key: mr_use_…, Parquet) ### Busan weather reports and daily highs since 2020 - Slug: busan-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Busan weather, report by report.** This dataset pairs weather reports from Gimhae International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evalu… - Page: https://mostlyright.md/datasets/busan-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, busan, south korea, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:44.080Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/busan-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/busan-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_rkpk (reports-rkpk) - tableId: 2037293c-b5d7-4ca5-8238-96680b925c9a - version_id: 39eb13be-62ba-4485-99a6-f315abae061e - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/2037293c-b5d7-4ca5-8238-96680b925c9a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2037293c-b5d7-4ca5-8238-96680b925c9a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2037293c-b5d7-4ca5-8238-96680b925c9a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2037293c-b5d7-4ca5-8238-96680b925c9a/current (x-api-key: mr_use_…, Parquet) ### Tokyo weather reports and daily highs since 2020 - Slug: tokyo-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Tokyo weather, report by report.** This dataset pairs weather reports from Haneda Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily temp… - Page: https://mostlyright.md/datasets/tokyo-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, tokyo, japan, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:39.037Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/tokyo-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/tokyo-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_rjtt (reports-rjtt) - tableId: a9e9ba28-6954-4478-a935-333bb63be8e9 - version_id: 661627e9-8940-46bc-a70a-0763f17f1447 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/a9e9ba28-6954-4478-a935-333bb63be8e9/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/a9e9ba28-6954-4478-a935-333bb63be8e9/preview - Query: POST https://mostlyright.md/api/v2/public/tables/a9e9ba28-6954-4478-a935-333bb63be8e9/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/a9e9ba28-6954-4478-a935-333bb63be8e9/current (x-api-key: mr_use_…, Parquet) ### Taipei weather reports and daily highs since 2020 - Slug: taipei-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Taipei weather, report by report.** This dataset pairs weather reports from Taoyuan International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or eva… - Page: https://mostlyright.md/datasets/taipei-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, taipei, taiwan, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:34.248Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/taipei-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/taipei-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_rctp (reports-rctp) - tableId: f81bced2-6d73-49fa-9ee3-0a43fe5e4f9a - version_id: e3ac1496-d4bc-487b-85e3-b6fcd637aa48 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f81bced2-6d73-49fa-9ee3-0a43fe5e4f9a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f81bced2-6d73-49fa-9ee3-0a43fe5e4f9a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f81bced2-6d73-49fa-9ee3-0a43fe5e4f9a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f81bced2-6d73-49fa-9ee3-0a43fe5e4f9a/current (x-api-key: mr_use_…, Parquet) ### Phoenix weather reports and daily highs since 2020 - Slug: phoenix-weather-reports-and-daily-highs-since-2020 - Summary: **Check Phoenix weather reports against official daily highs and lows.** This dataset pairs Phoenix Sky Harbor International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions… - Page: https://mostlyright.md/datasets/phoenix-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, phoenix, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:19:29.427Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/phoenix-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/phoenix-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kphx (reports-kphx) - tableId: 6cd5de11-5626-4496-811d-fb8675ccb7ed - version_id: e0fcd622-878a-4866-a014-c8b48ec0330d - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/6cd5de11-5626-4496-811d-fb8675ccb7ed/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6cd5de11-5626-4496-811d-fb8675ccb7ed/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6cd5de11-5626-4496-811d-fb8675ccb7ed/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6cd5de11-5626-4496-811d-fb8675ccb7ed/current (x-api-key: mr_use_…, Parquet) ### Philadelphia weather reports and daily highs since 2020 - Slug: philadelphia-weather-reports-and-daily-highs-since-2020 - Summary: **Check Philadelphia weather reports against official daily highs and lows.** This dataset pairs Philadelphia International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions… - Page: https://mostlyright.md/datasets/philadelphia-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, philadelphia, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:19:25.054Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/philadelphia-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/philadelphia-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kphl (reports-kphl) - tableId: 74906801-245c-474d-94c0-2e6ab7990458 - version_id: 09247a56-d0e9-4e22-8c70-82203bd10c79 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/74906801-245c-474d-94c0-2e6ab7990458/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/74906801-245c-474d-94c0-2e6ab7990458/preview - Query: POST https://mostlyright.md/api/v2/public/tables/74906801-245c-474d-94c0-2e6ab7990458/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/74906801-245c-474d-94c0-2e6ab7990458/current (x-api-key: mr_use_…, Parquet) ### Karachi weather reports and daily highs since 2020 - Slug: karachi-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Karachi weather, report by report.** This dataset pairs weather reports from Jinnah International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or eva… - Page: https://mostlyright.md/datasets/karachi-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, karachi, pakistan, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:20.728Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/karachi-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/karachi-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_opkc (reports-opkc) - tableId: 6d4159cc-e9cd-4015-9821-134a51803e2f - version_id: 60544a5f-fe53-4bb7-a96f-2457a2dd8dec - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/6d4159cc-e9cd-4015-9821-134a51803e2f/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6d4159cc-e9cd-4015-9821-134a51803e2f/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6d4159cc-e9cd-4015-9821-134a51803e2f/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6d4159cc-e9cd-4015-9821-134a51803e2f/current (x-api-key: mr_use_…, Parquet) ### Dubai weather reports and daily highs since 2020 - Slug: dubai-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Dubai weather, report by report.** This dataset pairs weather reports from Dubai International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evalua… - Page: https://mostlyright.md/datasets/dubai-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, dubai, united arab emirates, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:16.363Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/dubai-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/dubai-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_omdb (reports-omdb) - tableId: 4d6f2995-5ecb-41f8-9dc9-42f8e8d6affb - version_id: 8067f449-4e6f-40ff-be86-316d06b1c373 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/4d6f2995-5ecb-41f8-9dc9-42f8e8d6affb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/4d6f2995-5ecb-41f8-9dc9-42f8e8d6affb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/4d6f2995-5ecb-41f8-9dc9-42f8e8d6affb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/4d6f2995-5ecb-41f8-9dc9-42f8e8d6affb/current (x-api-key: mr_use_…, Parquet) ### Oklahoma City weather reports and daily highs since 2020 - Slug: oklahoma-city-weather-reports-and-daily-highs-since-2020 - Summary: **Check Oklahoma City weather reports against official daily highs and lows.** This dataset pairs Oklahoma City station KOKC reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or eval… - Page: https://mostlyright.md/datasets/oklahoma-city-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, oklahoma city, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:19:12.088Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/oklahoma-city-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/oklahoma-city-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kokc (reports-kokc) - tableId: 7d37bd5e-899b-4f75-a7d5-ace9de947066 - version_id: ff5da830-736e-4648-ad14-bc1c21ff9885 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/7d37bd5e-899b-4f75-a7d5-ace9de947066/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/7d37bd5e-899b-4f75-a7d5-ace9de947066/preview - Query: POST https://mostlyright.md/api/v2/public/tables/7d37bd5e-899b-4f75-a7d5-ace9de947066/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/7d37bd5e-899b-4f75-a7d5-ace9de947066/current (x-api-key: mr_use_…, Parquet) ### Jeddah weather reports and daily highs since 2020 - Slug: jeddah-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Jeddah weather, report by report.** This dataset pairs weather reports from King Abdulaziz International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport… - Page: https://mostlyright.md/datasets/jeddah-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, jeddah, saudi arabia, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:07.766Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/jeddah-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/jeddah-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_oejn (reports-oejn) - tableId: 54537168-12c3-4b56-ae1e-358ece2f48b9 - version_id: 8f79c0fd-04ad-4d0f-913b-1e7341c365bf - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/54537168-12c3-4b56-ae1e-358ece2f48b9/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/54537168-12c3-4b56-ae1e-358ece2f48b9/preview - Query: POST https://mostlyright.md/api/v2/public/tables/54537168-12c3-4b56-ae1e-358ece2f48b9/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/54537168-12c3-4b56-ae1e-358ece2f48b9/current (x-api-key: mr_use_…, Parquet) ### Wellington weather reports and daily highs since 2020 - Slug: wellington-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Wellington weather, report by report.** This dataset pairs weather reports from Wellington International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport… - Page: https://mostlyright.md/datasets/wellington-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, wellington, new zealand, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:19:03.497Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/wellington-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/wellington-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_nzwn (reports-nzwn) - tableId: 2022acaa-44e0-410e-a65f-1f1e37002ac4 - version_id: 98271856-5f06-410b-9779-f5284ad42cde - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/2022acaa-44e0-410e-a65f-1f1e37002ac4/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2022acaa-44e0-410e-a65f-1f1e37002ac4/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2022acaa-44e0-410e-a65f-1f1e37002ac4/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2022acaa-44e0-410e-a65f-1f1e37002ac4/current (x-api-key: mr_use_…, Parquet) ### New Orleans weather reports and daily highs since 2020 - Slug: new-orleans-weather-reports-and-daily-highs-since-2020 - Summary: **Check New Orleans weather reports against official daily highs and lows.** This dataset pairs Louis Armstrong New Orleans International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study pa… - Page: https://mostlyright.md/datasets/new-orleans-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, new orleans, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:18:59.307Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/new-orleans-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/new-orleans-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kmsy (reports-kmsy) - tableId: 3a6d3cde-9c27-453f-ba34-0e8dfe42249f - version_id: 83cd14a5-2a79-49d7-8285-a3398c2a804c - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3a6d3cde-9c27-453f-ba34-0e8dfe42249f/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3a6d3cde-9c27-453f-ba34-0e8dfe42249f/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3a6d3cde-9c27-453f-ba34-0e8dfe42249f/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3a6d3cde-9c27-453f-ba34-0e8dfe42249f/current (x-api-key: mr_use_…, Parquet) ### Minneapolis weather reports and daily highs since 2020 - Slug: minneapolis-weather-reports-and-daily-highs-since-2020 - Summary: **Check Minneapolis weather reports against official daily highs and lows.** This dataset pairs airport weather reports since 2020 with NWS daily temperatures for studying past conditions and evaluating forecasts. ## Coverage - Window: 202… - Page: https://mostlyright.md/datasets/minneapolis-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, minneapolis, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:18:54.977Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/minneapolis-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/minneapolis-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kmsp (reports-kmsp) - tableId: 232ece0b-1dcb-4584-a841-7e4dedc3a808 - version_id: 56a2b429-953c-4983-9572-2d9e01d37e82 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/232ece0b-1dcb-4584-a841-7e4dedc3a808/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/232ece0b-1dcb-4584-a841-7e4dedc3a808/preview - Query: POST https://mostlyright.md/api/v2/public/tables/232ece0b-1dcb-4584-a841-7e4dedc3a808/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/232ece0b-1dcb-4584-a841-7e4dedc3a808/current (x-api-key: mr_use_…, Parquet) ### Panama City weather reports and daily highs since 2020 - Slug: panama-city-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Panama City weather, report by report.** This dataset pairs weather reports from Tocumen International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/panama-city-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, panama city, panama, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:50.259Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/panama-city-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/panama-city-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_mpto (reports-mpto) - tableId: 39b7e419-1bae-44fa-a053-8eb7a47c12d0 - version_id: 35ae6424-5d0c-4b31-a2a9-1abb9c96729d - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/39b7e419-1bae-44fa-a053-8eb7a47c12d0/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/39b7e419-1bae-44fa-a053-8eb7a47c12d0/preview - Query: POST https://mostlyright.md/api/v2/public/tables/39b7e419-1bae-44fa-a053-8eb7a47c12d0/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/39b7e419-1bae-44fa-a053-8eb7a47c12d0/current (x-api-key: mr_use_…, Parquet) ### Mexico City weather reports and daily highs since 2020 - Slug: mexico-city-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Mexico City weather, report by report.** This dataset pairs weather reports from Benito Juárez International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the air… - Page: https://mostlyright.md/datasets/mexico-city-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, mexico city, mexico, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:45.682Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/mexico-city-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/mexico-city-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_mmmx (reports-mmmx) - tableId: 286ac45c-e6b9-4177-898d-65970994e813 - version_id: 93ff382b-c93a-44a6-a3dc-3d657017336f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/286ac45c-e6b9-4177-898d-65970994e813/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/286ac45c-e6b9-4177-898d-65970994e813/preview - Query: POST https://mostlyright.md/api/v2/public/tables/286ac45c-e6b9-4177-898d-65970994e813/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/286ac45c-e6b9-4177-898d-65970994e813/current (x-api-key: mr_use_…, Parquet) ### Miami weather reports and daily highs since 2020 - Slug: miami-weather-reports-and-daily-highs-since-2020 - Summary: **Check Miami weather reports against official daily highs and lows.** This dataset pairs Miami International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate da… - Page: https://mostlyright.md/datasets/miami-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, miami, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:18:41.136Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/miami-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/miami-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kmia (reports-kmia) - tableId: b18ecf22-2169-4ebe-9862-155b5abb412d - version_id: 7fa5172d-e832-486b-a3b2-70ba7f0c22ac - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b18ecf22-2169-4ebe-9862-155b5abb412d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b18ecf22-2169-4ebe-9862-155b5abb412d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b18ecf22-2169-4ebe-9862-155b5abb412d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b18ecf22-2169-4ebe-9862-155b5abb412d/current (x-api-key: mr_use_…, Parquet) ### New York City weather reports and daily highs since 2020 - Slug: new-york-city-weather-reports-and-daily-highs-since-2020 - Summary: **Check New York City weather reports against official daily highs and lows.** This dataset pairs Central Park reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate daily tem… - Page: https://mostlyright.md/datasets/new-york-city-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, new york city, united states, metar, national weather service, daily high temperature, central park, hourly observations - Published: 2026-09-10T08:18:40.152Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/new-york-city-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/new-york-city-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_knyc (reports-knyc) - tableId: da92a734-5290-4159-8ae0-037ebd8ba51a - version_id: 00228952-35fb-4bea-8980-507fa83c3b6e - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/da92a734-5290-4159-8ae0-037ebd8ba51a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/da92a734-5290-4159-8ae0-037ebd8ba51a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/da92a734-5290-4159-8ae0-037ebd8ba51a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/da92a734-5290-4159-8ae0-037ebd8ba51a/current (x-api-key: mr_use_…, Parquet) ### Istanbul weather reports and daily highs since 2020 - Slug: istanbul-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Istanbul weather, report by report.** This dataset pairs weather reports from Istanbul Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily… - Page: https://mostlyright.md/datasets/istanbul-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, istanbul, turkey, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:36.504Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/istanbul-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/istanbul-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ltfm (reports-ltfm) - tableId: e9b108be-8ce9-40f5-ae53-b2d65adbbe4a - version_id: 36c60d6f-d56b-4f72-a6ca-d7b719ea347e - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/e9b108be-8ce9-40f5-ae53-b2d65adbbe4a/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/e9b108be-8ce9-40f5-ae53-b2d65adbbe4a/preview - Query: POST https://mostlyright.md/api/v2/public/tables/e9b108be-8ce9-40f5-ae53-b2d65adbbe4a/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/e9b108be-8ce9-40f5-ae53-b2d65adbbe4a/current (x-api-key: mr_use_…, Parquet) ### Ankara weather reports and daily highs since 2020 - Slug: ankara-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Ankara weather, report by report.** This dataset pairs weather reports from Esenboğa Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily t… - Page: https://mostlyright.md/datasets/ankara-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, ankara, turkey, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:32.104Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/ankara-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/ankara-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ltac (reports-ltac) - tableId: b33c5d0c-5905-4a3c-b91a-516ae36fc9e2 - version_id: d7605c2c-687e-47e2-b36d-467aca85937f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b33c5d0c-5905-4a3c-b91a-516ae36fc9e2/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b33c5d0c-5905-4a3c-b91a-516ae36fc9e2/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b33c5d0c-5905-4a3c-b91a-516ae36fc9e2/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b33c5d0c-5905-4a3c-b91a-516ae36fc9e2/current (x-api-key: mr_use_…, Parquet) ### Geneva weather reports and daily highs since 2020 - Slug: geneva-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Geneva weather, report by report.** This dataset pairs weather reports from Geneva Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily tem… - Page: https://mostlyright.md/datasets/geneva-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, geneva, switzerland, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:27.821Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/geneva-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/geneva-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_lsgg (reports-lsgg) - tableId: 3554e0db-9350-4172-a7db-077bfaebec5f - version_id: b7fb1df8-2270-41d2-8949-576a4f0c0152 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/3554e0db-9350-4172-a7db-077bfaebec5f/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/3554e0db-9350-4172-a7db-077bfaebec5f/preview - Query: POST https://mostlyright.md/api/v2/public/tables/3554e0db-9350-4172-a7db-077bfaebec5f/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/3554e0db-9350-4172-a7db-077bfaebec5f/current (x-api-key: mr_use_…, Parquet) ### Tel Aviv weather reports and daily highs since 2020 - Slug: tel-aviv-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Tel Aviv weather, report by report.** This dataset pairs weather reports from Ben Gurion Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate dai… - Page: https://mostlyright.md/datasets/tel-aviv-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, tel aviv, israel, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:22.985Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/tel-aviv-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/tel-aviv-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_llbg (reports-llbg) - tableId: ca3fbd73-5948-4d17-9042-82306f70e5bc - version_id: 66191183-bc41-44ef-8765-e057c320d4e1 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ca3fbd73-5948-4d17-9042-82306f70e5bc/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ca3fbd73-5948-4d17-9042-82306f70e5bc/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ca3fbd73-5948-4d17-9042-82306f70e5bc/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ca3fbd73-5948-4d17-9042-82306f70e5bc/current (x-api-key: mr_use_…, Parquet) ### Milan weather reports and daily highs since 2020 - Slug: milan-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Milan weather, report by report.** This dataset pairs weather reports from Linate Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily temp… - Page: https://mostlyright.md/datasets/milan-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, milan, italy, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:18.601Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/milan-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/milan-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_liml (reports-liml) - tableId: 0adf8ee7-dcbf-49f6-af99-ab61c4a835bb - version_id: f744c809-9d87-4ece-aadf-d61a9dfd3e6a - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/0adf8ee7-dcbf-49f6-af99-ab61c4a835bb/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/0adf8ee7-dcbf-49f6-af99-ab61c4a835bb/preview - Query: POST https://mostlyright.md/api/v2/public/tables/0adf8ee7-dcbf-49f6-af99-ab61c4a835bb/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/0adf8ee7-dcbf-49f6-af99-ab61c4a835bb/current (x-api-key: mr_use_…, Parquet) ### Paris weather reports and daily highs since 2020 - Slug: paris-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Paris weather, report by report.** This dataset pairs weather reports from Charles de Gaulle Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate… - Page: https://mostlyright.md/datasets/paris-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, paris, france, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:14.168Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/paris-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/paris-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_lfpg (reports-lfpg) - tableId: a5b16566-b80d-4194-883f-71af694da675 - version_id: bf932ed3-3e8a-4783-ae01-d4ce65ebc415 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/a5b16566-b80d-4194-883f-71af694da675/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/a5b16566-b80d-4194-883f-71af694da675/preview - Query: POST https://mostlyright.md/api/v2/public/tables/a5b16566-b80d-4194-883f-71af694da675/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/a5b16566-b80d-4194-883f-71af694da675/current (x-api-key: mr_use_…, Parquet) ### Madrid weather reports and daily highs since 2020 - Slug: madrid-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Madrid weather, report by report.** This dataset pairs weather reports from Adolfo Suárez Madrid-Barajas Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport… - Page: https://mostlyright.md/datasets/madrid-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, madrid, spain, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:18:09.348Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/madrid-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/madrid-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_lemd (reports-lemd) - tableId: 25bd9041-6e21-43dd-9d68-f480b433c0a4 - version_id: 25dc3d9f-b32a-4938-b685-604b8c5b0ca5 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/25bd9041-6e21-43dd-9d68-f480b433c0a4/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/25bd9041-6e21-43dd-9d68-f480b433c0a4/preview - Query: POST https://mostlyright.md/api/v2/public/tables/25bd9041-6e21-43dd-9d68-f480b433c0a4/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/25bd9041-6e21-43dd-9d68-f480b433c0a4/current (x-api-key: mr_use_…, Parquet) ### Los Angeles weather reports and daily highs since 2020 - Slug: los-angeles-weather-reports-and-daily-highs-since-2020 - Summary: **Check Los Angeles weather reports against official daily highs and lows.** This dataset pairs Los Angeles International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or… - Page: https://mostlyright.md/datasets/los-angeles-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, los angeles, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:18:04.917Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/los-angeles-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/los-angeles-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_klax (reports-klax) - tableId: a5004e4c-4685-48a1-8ea2-bc7bba8d8bdd - version_id: a82b154d-91a6-49c8-8b0d-2dbb99589408 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/a5004e4c-4685-48a1-8ea2-bc7bba8d8bdd/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/a5004e4c-4685-48a1-8ea2-bc7bba8d8bdd/preview - Query: POST https://mostlyright.md/api/v2/public/tables/a5004e4c-4685-48a1-8ea2-bc7bba8d8bdd/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/a5004e4c-4685-48a1-8ea2-bc7bba8d8bdd/current (x-api-key: mr_use_…, Parquet) ### Las Vegas weather reports and daily highs since 2020 - Slug: las-vegas-weather-reports-and-daily-highs-since-2020 - Summary: **Check Las Vegas weather reports against official daily highs and lows.** This dataset pairs Harry Reid International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or ev… - Page: https://mostlyright.md/datasets/las-vegas-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, las vegas, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:18:00.325Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/las-vegas-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/las-vegas-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_klas (reports-klas) - tableId: 45061d54-ff74-4298-aeb5-894f7536db94 - version_id: bf6e91d0-12b9-419d-8e10-b97ed3edea0f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/45061d54-ff74-4298-aeb5-894f7536db94/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/45061d54-ff74-4298-aeb5-894f7536db94/preview - Query: POST https://mostlyright.md/api/v2/public/tables/45061d54-ff74-4298-aeb5-894f7536db94/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/45061d54-ff74-4298-aeb5-894f7536db94/current (x-api-key: mr_use_…, Parquet) ### Houston weather reports and daily highs since 2020 - Slug: houston-weather-reports-and-daily-highs-since-2020 - Summary: **Check Houston weather reports against official daily highs and lows.** This dataset pairs William P. Hobby Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate dai… - Page: https://mostlyright.md/datasets/houston-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, houston, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:17:55.484Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/houston-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/houston-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_khou (reports-khou) - tableId: 234a73b7-d760-49dd-a531-6c285e7f3910 - version_id: f6745454-8a41-4b4e-aea5-55d96f846443 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/234a73b7-d760-49dd-a531-6c285e7f3910/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/234a73b7-d760-49dd-a531-6c285e7f3910/preview - Query: POST https://mostlyright.md/api/v2/public/tables/234a73b7-d760-49dd-a531-6c285e7f3910/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/234a73b7-d760-49dd-a531-6c285e7f3910/current (x-api-key: mr_use_…, Parquet) ### Cape Town weather reports and daily highs since 2020 - Slug: cape-town-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Cape Town weather, report by report.** This dataset pairs weather reports from Cape Town International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport o… - Page: https://mostlyright.md/datasets/cape-town-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, cape town, south africa, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:51.114Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/cape-town-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/cape-town-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_fact (reports-fact) - tableId: 2818fa33-b734-42b4-b205-86fc8756a551 - version_id: bd87e74c-5906-4b63-93f5-70c4ca3ac63d - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/2818fa33-b734-42b4-b205-86fc8756a551/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2818fa33-b734-42b4-b205-86fc8756a551/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2818fa33-b734-42b4-b205-86fc8756a551/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2818fa33-b734-42b4-b205-86fc8756a551/current (x-api-key: mr_use_…, Parquet) ### Newark weather reports and daily highs since 2020 - Slug: newark-weather-reports-and-daily-highs-since-2020 - Summary: **Check Newark weather reports against official daily highs and lows.** This dataset pairs Newark Liberty International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or e… - Page: https://mostlyright.md/datasets/newark-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, newark, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:17:46.507Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/newark-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/newark-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kewr (reports-kewr) - tableId: 2d979af9-2e2d-4c93-986e-5fd1621b7d2b - version_id: 4c4ebdd0-bfa7-486e-84e8-fabe7e5ff7e8 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/2d979af9-2e2d-4c93-986e-5fd1621b7d2b/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/2d979af9-2e2d-4c93-986e-5fd1621b7d2b/preview - Query: POST https://mostlyright.md/api/v2/public/tables/2d979af9-2e2d-4c93-986e-5fd1621b7d2b/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/2d979af9-2e2d-4c93-986e-5fd1621b7d2b/current (x-api-key: mr_use_…, Parquet) ### Warsaw weather reports and daily highs since 2020 - Slug: warsaw-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Warsaw weather, report by report.** This dataset pairs weather reports from Warsaw Chopin Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate da… - Page: https://mostlyright.md/datasets/warsaw-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, warsaw, poland, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:42.100Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/warsaw-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/warsaw-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_epwa (reports-epwa) - tableId: cf423598-d2da-46f4-b6cb-8f4b01bcc8ae - version_id: 499160e1-ef89-47f7-abfd-08f40edfdff4 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/cf423598-d2da-46f4-b6cb-8f4b01bcc8ae/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/cf423598-d2da-46f4-b6cb-8f4b01bcc8ae/preview - Query: POST https://mostlyright.md/api/v2/public/tables/cf423598-d2da-46f4-b6cb-8f4b01bcc8ae/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/cf423598-d2da-46f4-b6cb-8f4b01bcc8ae/current (x-api-key: mr_use_…, Parquet) ### Amsterdam weather reports and daily highs since 2020 - Slug: amsterdam-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Amsterdam weather, report by report.** This dataset pairs weather reports from Schiphol Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate dail… - Page: https://mostlyright.md/datasets/amsterdam-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, amsterdam, netherlands, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:37.662Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/amsterdam-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/amsterdam-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_eham (reports-eham) - tableId: ecff5078-75d7-42ae-b7c4-70491a01326c - version_id: 96322ce6-d1a5-4a0f-9060-3e67fda6a5b4 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ecff5078-75d7-42ae-b7c4-70491a01326c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ecff5078-75d7-42ae-b7c4-70491a01326c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ecff5078-75d7-42ae-b7c4-70491a01326c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ecff5078-75d7-42ae-b7c4-70491a01326c/current (x-api-key: mr_use_…, Parquet) ### London weather reports and daily highs since 2020 - Slug: london-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct London weather, report by report.** This dataset pairs weather reports from Heathrow Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily t… - Page: https://mostlyright.md/datasets/london-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, london, united kingdom, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:33.243Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/london-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/london-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_egll (reports-egll) - tableId: 8a511163-8a2a-444f-86e6-0bdfb54ccfa2 - version_id: 051d75c7-2460-499d-8eb6-c3d5dee7b7db - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/8a511163-8a2a-444f-86e6-0bdfb54ccfa2/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/8a511163-8a2a-444f-86e6-0bdfb54ccfa2/preview - Query: POST https://mostlyright.md/api/v2/public/tables/8a511163-8a2a-444f-86e6-0bdfb54ccfa2/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/8a511163-8a2a-444f-86e6-0bdfb54ccfa2/current (x-api-key: mr_use_…, Parquet) ### Helsinki weather reports and daily highs since 2020 - Slug: helsinki-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Helsinki weather, report by report.** This dataset pairs weather reports from Helsinki-Vantaa Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluat… - Page: https://mostlyright.md/datasets/helsinki-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, helsinki, finland, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:28.861Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/helsinki-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/helsinki-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_efhk (reports-efhk) - tableId: b1cd06cd-6309-4584-9222-c55e78f4daf1 - version_id: f1e95b19-18c5-462d-a8f2-51cd6cc6f8f7 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b1cd06cd-6309-4584-9222-c55e78f4daf1/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b1cd06cd-6309-4584-9222-c55e78f4daf1/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b1cd06cd-6309-4584-9222-c55e78f4daf1/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b1cd06cd-6309-4584-9222-c55e78f4daf1/current (x-api-key: mr_use_…, Parquet) ### Munich weather reports and daily highs since 2020 - Slug: munich-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Munich weather, report by report.** This dataset pairs weather reports from Munich Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily tem… - Page: https://mostlyright.md/datasets/munich-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, munich, germany, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:24.645Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/munich-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/munich-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_eddm (reports-eddm) - tableId: b98b5962-10a5-42b3-ace3-0ff54ec792a7 - version_id: 3ce73ec5-fdda-4552-bc4c-7fedc2f29312 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b98b5962-10a5-42b3-ace3-0ff54ec792a7/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b98b5962-10a5-42b3-ace3-0ff54ec792a7/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b98b5962-10a5-42b3-ace3-0ff54ec792a7/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b98b5962-10a5-42b3-ace3-0ff54ec792a7/current (x-api-key: mr_use_…, Parquet) ### Frankfurt weather reports and daily highs since 2020 - Slug: frankfurt-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Frankfurt weather, report by report.** This dataset pairs weather reports from Frankfurt Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate dai… - Page: https://mostlyright.md/datasets/frankfurt-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, frankfurt, germany, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:20.109Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/frankfurt-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/frankfurt-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_eddf (reports-eddf) - tableId: dd196b7a-972a-4d99-964c-7106531ef5dd - version_id: b4a501d1-c7e0-4d8e-8f56-f97238b6386c - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/dd196b7a-972a-4d99-964c-7106531ef5dd/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/dd196b7a-972a-4d99-964c-7106531ef5dd/preview - Query: POST https://mostlyright.md/api/v2/public/tables/dd196b7a-972a-4d99-964c-7106531ef5dd/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/dd196b7a-972a-4d99-964c-7106531ef5dd/current (x-api-key: mr_use_…, Parquet) ### Berlin weather reports and daily highs since 2020 - Slug: berlin-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Berlin weather, report by report.** This dataset pairs weather reports from Berlin Brandenburg Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evalua… - Page: https://mostlyright.md/datasets/berlin-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, berlin, germany, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:15.670Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/berlin-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/berlin-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_eddb (reports-eddb) - tableId: ebe42198-b36a-41bc-ad57-d91cc623421c - version_id: 2efa3e9e-1b4c-4083-bfd6-a128b1183591 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/ebe42198-b36a-41bc-ad57-d91cc623421c/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/ebe42198-b36a-41bc-ad57-d91cc623421c/preview - Query: POST https://mostlyright.md/api/v2/public/tables/ebe42198-b36a-41bc-ad57-d91cc623421c/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/ebe42198-b36a-41bc-ad57-d91cc623421c/current (x-api-key: mr_use_…, Parquet) ### Brussels weather reports and daily highs since 2020 - Slug: brussels-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Brussels weather, report by report.** This dataset pairs weather reports from Brussels Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airport or evaluate daily… - Page: https://mostlyright.md/datasets/brussels-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, brussels, belgium, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:17:11.347Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/brussels-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/brussels-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_ebbr (reports-ebbr) - tableId: b1069446-bf3b-43c9-8385-31319098a5c8 - version_id: 18b99763-76f8-4eed-b1d5-0b0d181a4cdf - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/b1069446-bf3b-43c9-8385-31319098a5c8/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/b1069446-bf3b-43c9-8385-31319098a5c8/preview - Query: POST https://mostlyright.md/api/v2/public/tables/b1069446-bf3b-43c9-8385-31319098a5c8/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/b1069446-bf3b-43c9-8385-31319098a5c8/current (x-api-key: mr_use_…, Parquet) ### Dallas-Fort Worth weather reports and daily highs since 2020 - Slug: dallas-fort-worth-weather-reports-and-daily-highs-since-2020 - Summary: **Check Dallas-Fort Worth weather reports against official daily highs and lows.** This dataset pairs airport weather reports since 2020 with NWS daily temperatures for studying past conditions and evaluating forecasts. ## Coverage - Windo… - Page: https://mostlyright.md/datasets/dallas-fort-worth-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, dallas, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:17:06.874Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/dallas-fort-worth-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/dallas-fort-worth-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kdfw (reports-kdfw) - tableId: fade84f5-4754-4c63-aaf6-fe555520f9a8 - version_id: 1a565a6e-e153-49db-b565-436f7ff70979 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/fade84f5-4754-4c63-aaf6-fe555520f9a8/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/fade84f5-4754-4c63-aaf6-fe555520f9a8/preview - Query: POST https://mostlyright.md/api/v2/public/tables/fade84f5-4754-4c63-aaf6-fe555520f9a8/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/fade84f5-4754-4c63-aaf6-fe555520f9a8/current (x-api-key: mr_use_…, Parquet) ### Denver weather reports and daily highs since 2020 - Slug: denver-weather-reports-and-daily-highs-since-2020 - Summary: **Check Denver weather reports against official daily highs and lows.** This dataset pairs Denver International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate… - Page: https://mostlyright.md/datasets/denver-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, denver, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:17:02.479Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/denver-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/denver-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kden (reports-kden) - tableId: f604359d-ea24-42c0-b9b0-29bcd2a3a81d - version_id: d0857dd4-df54-4c42-80b4-70f2f8b48687 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/f604359d-ea24-42c0-b9b0-29bcd2a3a81d/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/f604359d-ea24-42c0-b9b0-29bcd2a3a81d/preview - Query: POST https://mostlyright.md/api/v2/public/tables/f604359d-ea24-42c0-b9b0-29bcd2a3a81d/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/f604359d-ea24-42c0-b9b0-29bcd2a3a81d/current (x-api-key: mr_use_…, Parquet) ### Washington, DC weather reports and daily highs since 2020 - Slug: washington-dc-weather-reports-and-daily-highs-since-2020 - Summary: **Check Washington, DC weather reports against official daily highs and lows.** This dataset pairs Reagan National Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evalua… - Page: https://mostlyright.md/datasets/washington-dc-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, washington dc, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:16:56.636Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/washington-dc-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/washington-dc-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kdca (reports-kdca) - tableId: 0b8ae885-ed95-4190-b4c0-e9c6510afa28 - version_id: fb8f4a9a-ea39-4c9c-bd17-36a16cd3473c - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/0b8ae885-ed95-4190-b4c0-e9c6510afa28/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/0b8ae885-ed95-4190-b4c0-e9c6510afa28/preview - Query: POST https://mostlyright.md/api/v2/public/tables/0b8ae885-ed95-4190-b4c0-e9c6510afa28/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/0b8ae885-ed95-4190-b4c0-e9c6510afa28/current (x-api-key: mr_use_…, Parquet) ### Toronto weather reports and daily highs since 2020 - Slug: toronto-weather-reports-and-daily-highs-since-2020 - Summary: **Reconstruct Toronto weather, report by report.** This dataset pairs weather reports from Toronto Pearson International Airport since 2020 with daily highs and lows calculated from the reports. Use it to study past conditions at the airpo… - Page: https://mostlyright.md/datasets/toronto-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, toronto, canada, metar, airport weather station, daily high temperature, hourly observations - Published: 2026-09-10T08:16:52.191Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/toronto-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/toronto-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_cyyz (reports-cyyz) - tableId: 6831048a-732a-474e-b25e-2a376823ef31 - version_id: a066d2a7-d4b5-49b9-9b5f-df0c18ec866c - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/6831048a-732a-474e-b25e-2a376823ef31/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/6831048a-732a-474e-b25e-2a376823ef31/preview - Query: POST https://mostlyright.md/api/v2/public/tables/6831048a-732a-474e-b25e-2a376823ef31/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/6831048a-732a-474e-b25e-2a376823ef31/current (x-api-key: mr_use_…, Parquet) ### Boston weather reports and daily highs since 2020 - Slug: boston-weather-reports-and-daily-highs-since-2020 - Summary: **Check Boston weather reports against official daily highs and lows.** This dataset pairs Logan International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate d… - Page: https://mostlyright.md/datasets/boston-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, boston, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:16:47.674Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/boston-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/boston-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kbos (reports-kbos) - tableId: 60093fcf-2fe9-4435-a0e8-a76b16fd758e - version_id: b2039d4e-3223-4616-80e0-10c9255fd09f - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/60093fcf-2fe9-4435-a0e8-a76b16fd758e/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/60093fcf-2fe9-4435-a0e8-a76b16fd758e/preview - Query: POST https://mostlyright.md/api/v2/public/tables/60093fcf-2fe9-4435-a0e8-a76b16fd758e/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/60093fcf-2fe9-4435-a0e8-a76b16fd758e/current (x-api-key: mr_use_…, Parquet) ### Austin weather reports and daily highs since 2020 - Slug: austin-weather-reports-and-daily-highs-since-2020 - Summary: **Check Austin weather reports against official daily highs and lows.** This dataset pairs Camp Mabry reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate daily temperature… - Page: https://mostlyright.md/datasets/austin-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, austin, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:16:43.153Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/austin-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/austin-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_katt (reports-katt) - tableId: cfacbfb6-448b-484a-8e38-67b64be8a440 - version_id: 1e5ab5e1-8217-4929-8622-1991497440f1 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/cfacbfb6-448b-484a-8e38-67b64be8a440/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/cfacbfb6-448b-484a-8e38-67b64be8a440/preview - Query: POST https://mostlyright.md/api/v2/public/tables/cfacbfb6-448b-484a-8e38-67b64be8a440/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/cfacbfb6-448b-484a-8e38-67b64be8a440/current (x-api-key: mr_use_…, Parquet) ### Atlanta weather reports and daily highs since 2020 - Slug: atlanta-weather-reports-and-daily-highs-since-2020 - Summary: **Check Atlanta weather reports against official daily highs and lows.** This dataset pairs Hartsfield-Jackson Atlanta International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past co… - Page: https://mostlyright.md/datasets/atlanta-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, atlanta, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:16:38.403Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/atlanta-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/atlanta-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_katl (reports-katl) - tableId: 58b06b31-0ba7-4b33-a253-503342ec2ab6 - version_id: 5d806830-a38f-4e78-bb6e-f25284a745d4 - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/58b06b31-0ba7-4b33-a253-503342ec2ab6/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/58b06b31-0ba7-4b33-a253-503342ec2ab6/preview - Query: POST https://mostlyright.md/api/v2/public/tables/58b06b31-0ba7-4b33-a253-503342ec2ab6/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/58b06b31-0ba7-4b33-a253-503342ec2ab6/current (x-api-key: mr_use_…, Parquet) ### Chicago weather reports and daily highs since 2020 - Slug: chicago-weather-reports-and-daily-highs-since-2020 - Summary: **Check Chicago weather reports against official daily highs and lows.** This dataset pairs Midway International Airport reports from 2020 onward with National Weather Service daily temperatures. Use it to study past conditions or evaluate… - Page: https://mostlyright.md/datasets/chicago-weather-reports-and-daily-highs-since-2020 - Publisher: mostlyrightmd - Topics: weather, chicago, united states, metar, national weather service, daily high temperature, hourly observations - Published: 2026-09-10T08:16:12.512Z - Metadata: GET https://mostlyright.md/api/v2/public/datasets/chicago-weather-reports-and-daily-highs-since-2020 - This dataset as Markdown: https://mostlyright.md/datasets/chicago-weather-reports-and-daily-highs-since-2020/llms.txt Tables (1): - reports_kmdw (reports-kmdw) - tableId: d6ee549a-2627-42db-a0cf-1cbda28f6339 - version_id: 9d174b8e-2715-4ef1-b6e9-b9083545407b - license: CC-BY-4.0 - Schema: GET https://mostlyright.md/api/v2/public/tables/d6ee549a-2627-42db-a0cf-1cbda28f6339/schema - Preview: GET https://mostlyright.md/api/v2/public/tables/d6ee549a-2627-42db-a0cf-1cbda28f6339/preview - Query: POST https://mostlyright.md/api/v2/public/tables/d6ee549a-2627-42db-a0cf-1cbda28f6339/query (x-api-key: mr_use_…) - Current: GET https://mostlyright.md/api/v2/public/tables/d6ee549a-2627-42db-a0cf-1cbda28f6339/current (x-api-key: mr_use_…, Parquet) ## Limits POST .../query returns 25 rows when no limit is given and at most 10000 with a key. Every page answers with next_cursor; send it back as cursor for the next page until it is null, and the whole table is read on one immutable version (offset works too). A result is capped at 8 MiB of JSON and 15 s of execution, and at most 64 columns, 8 filters, and 2 sort keys. A key may run 60 queries a minute and 5000 a day. Without a key, POST /api/public/tables/{table_id}/query takes the same body and returns at most 100 rows and 64 KiB a page, 30 queries a minute and 600 a day per address. The response reports returned_rows, scanned_bytes, elapsed_ms, and whether the result was truncated. For the whole table in one request, download GET .../current once and query the Parquet file locally instead. ## Citing a result Cite five things: the dataset (name and page URL), the table, the immutable version_id the result came from, the content digest, and the time you ran the query. A query response carries table.version_id, table.content_digest, and citation.dataset_url. A Current download carries a strong ETag and a Content-Digest header. Any version_id printed in this file is the version that was current when the file was generated; always cite the one your own response returned.