Bike Sharing Dataset
APISold by Data 37
Bike rental counts with weather, calendar and seasonal variables. Source: UCI Machine Learning Repository — https://archive.ics.uci.edu/dataset/275 Data vintage: 2011–2012 (published 2013) Cleaned and reformatted from the original; see source page for full documentation and citation.
The URL
Send a GET request — parameters go in the query string — no payment, no API key. The relay returns the origin's JSON response directly.
https://api.datapoint.market/r/data37/bike-sharing-dataset
Example request
{}
Response shape
Fields
- object
columnsarray of- string
notestringsample_rowsarray of- object
atempstring normalized feels-like temperature (value/50 °C)casualstring casual (non-registered) rider countcntstring total rentals (casual + registered) — the target variabledtedaystring · date date (YYYY-MM-DD)holidaystring · 1=yes | 0=no is a holidayhrstring hour of day (0–23; hourly file only)humstring normalized humidity (value/100)instantstring record indexmnthstring month (1–12)registeredstring registered rider countseasonstring · 1=winter | 2=spring | 3=summer | 4=fall seasontempstring normalized temperature (value/41 °C)weathersitstring · 1=clear | 2=mist/cloudy | 3=light rain/snow | 4=heavy rain/snow weather situationweekdaystring day of week (0=Sunday)windspeedstring normalized wind speed (value/67)workingdaystring · 1=yes | 0=no neither weekend nor holidayyrstring · 0=2011 | 1=2012 year
- object
Example rows
| instant | dteday | season | yr | mnth | hr | holiday | weekday | workingday | weathersit | temp | atemp | hum | windspeed | casual | registered | cnt |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 2011-01-01 | 1 | 0 | 1 | 0 | 0 | 6 | 0 | 1 | 0.24 | 0.2879 | 0.81 | 0 | 3 | 13 | 16 |
| 2 | 2011-01-01 | 1 | 0 | 1 | 1 | 0 | 6 | 0 | 1 | 0.22 | 0.2727 | 0.8 | 0 | 8 | 32 | 40 |
| 3 | 2011-01-01 | 1 | 0 | 1 | 2 | 0 | 6 | 0 | 1 | 0.22 | 0.2727 | 0.8 | 0 | 5 | 27 | 32 |
Example response (JSON)
{
"columns": [
"instant",
"dteday",
"season",
"yr",
"mnth",
"hr",
"holiday",
"weekday",
"workingday",
"weathersit",
"temp",
"atemp",
"hum",
"windspeed",
"casual",
"registered",
"cnt"
],
"note": "Free preview. Full file delivered on download.",
"sample_rows": [
{
"instant": "1",
"dteday": "2011-01-01",
"season": "1",
"yr": "0",
"mnth": "1",
"hr": "0",
"holiday": "0",
"weekday": "6",
"workingday": "0",
"weathersit": "1",
"temp": "0.24",
"atemp": "0.2879",
"hum": "0.81",
"windspeed": "0",
"casual": "3",
"registered": "13",
"cnt": "16"
},
{
"instant": "2",
"dteday": "2011-01-01",
"season": "1",
"yr": "0",
"mnth": "1",
"hr": "1",
"holiday": "0",
"weekday": "6",
"workingday": "0",
"weathersit": "1",
"temp": "0.22",
"atemp": "0.2727",
"hum": "0.8",
"windspeed": "0",
"casual": "8",
"registered": "32",
"cnt": "40"
},
{
"instant": "3",
"dteday": "2011-01-01",
"season": "1",
"yr": "0",
"mnth": "1",
"hr": "2",
"holiday": "0",
"weekday": "6",
"workingday": "0",
"weathersit": "1",
"temp": "0.22",
"atemp": "0.2727",
"hum": "0.8",
"windspeed": "0",
"casual": "5",
"registered": "27",
"cnt": "32"
}
]
}Call it from the shell
curl 'https://api.datapoint.market/r/data37/bike-sharing-dataset'
Call it from an agent
Connected in Claude (or any agent on the connector)? Buy it in one call — no API key, no signup. Call it once with no payment to take a free trial (real data) or get a price quote before you pay.
call_endpoint("data37", "bike-sharing-dataset", params={})
This endpoint is free — no account, no API key, no payment. Just call the URL and the relay returns the origin's response.
Provider: Data 37