csvbase is a simple website for sharing table data. Join the discord.

approx. 1,460 rows, last changed 2 years ago

Table of contents

  1. The basics: auth and content negotations
    1. Authentication
    2. Content negotiation
  2. The API: endpoint-by-endpoint
    1. Tables
      1. Reading a table
    2. Rows
      1. Creating a new row
      2. Reading a row
      3. Updating an existing row
      4. Deleting a row

The basics: auth and content negotiation

Authentication

With CSVBase, you authenticate using by putting your username and API key straight in the url (known as "HTTP "basic" auth").

Here's an example:

https://<some_user>:<some_api_key>@csvbase.com/rmirror/Housing-Prices-dataset

Basic auth is widely supported and is usually accepted anywhere that accepts urls.

However, rmirror/Housing-Prices-dataset is public so auth is needed only for writes.

Content negotiation

CSVBase APIs use content negotiation to decide what formats are in use. This means it consults HTTP headers to decide what format to send back in response to a request.

It important that you set the Content-Type and Accept headers to be the mimetype you want: typically that is application/json for both. If you fail to include these headers in your requests, the API will still work but CSVBase will pick a sensible default: CSV for tables, JSON for rows.

You can bypass content negotiation for read-only requests by appending a file extension to the url, eg .json. Here's an example of that (same resource as above):

https://<some_user>:<some_api_key>@csvbase.com/rmirror/Housing-Prices-dataset.json

This is useful when dealing with software where you aren't able to set headers.

The API: endpoint-by-endpoint

There are three kinds of thing in csvbase:

  1. users
  2. tables
  3. rows

While there's no API for users so far, there is for tables and rows.

Tables

This table looks like this in JSON:

{
    "name": "Housing-Prices-dataset",
    "is_public": true,
    "caption": "",
    "licence": null,
    "created": "2024-07-25T20:45:22.071808+01:00",
    "last_changed": "2024-07-31T07:56:51.493732+01:00",
    "columns": [
        {
            "name": "csvbase_row_id",
            "type": "integer"
        },
        {
            "name": "Id",
            "type": "integer"
        },
        {
            "name": "MSSubClass",
            "type": "integer"
        },
        {
            "name": "MSZoning",
            "type": "string"
        },
        {
            "name": "LotFrontage",
            "type": "float"
        },
        {
            "name": "LotArea",
            "type": "integer"
        },
        {
            "name": "Street",
            "type": "string"
        },
        {
            "name": "Alley",
            "type": "string"
        },
        {
            "name": "LotShape",
            "type": "string"
        },
        {
            "name": "LandContour",
            "type": "string"
        },
        {
            "name": "Utilities",
            "type": "string"
        },
        {
            "name": "LotConfig",
            "type": "string"
        },
        {
            "name": "LandSlope",
            "type": "string"
        },
        {
            "name": "Neighborhood",
            "type": "string"
        },
        {
            "name": "Condition1",
            "type": "string"
        },
        {
            "name": "Condition2",
            "type": "string"
        },
        {
            "name": "BldgType",
            "type": "string"
        },
        {
            "name": "HouseStyle",
            "type": "string"
        },
        {
            "name": "OverallQual",
            "type": "integer"
        },
        {
            "name": "OverallCond",
            "type": "integer"
        },
        {
            "name": "YearBuilt",
            "type": "integer"
        },
        {
            "name": "YearRemodAdd",
            "type": "integer"
        },
        {
            "name": "RoofStyle",
            "type": "string"
        },
        {
            "name": "RoofMatl",
            "type": "string"
        },
        {
            "name": "Exterior1st",
            "type": "string"
        },
        {
            "name": "Exterior2nd",
            "type": "string"
        },
        {
            "name": "MasVnrType",
            "type": "string"
        },
        {
            "name": "MasVnrArea",
            "type": "float"
        },
        {
            "name": "ExterQual",
            "type": "string"
        },
        {
            "name": "ExterCond",
            "type": "string"
        },
        {
            "name": "Foundation",
            "type": "string"
        },
        {
            "name": "BsmtQual",
            "type": "string"
        },
        {
            "name": "BsmtCond",
            "type": "string"
        },
        {
            "name": "BsmtExposure",
            "type": "string"
        },
        {
            "name": "BsmtFinType1",
            "type": "string"
        },
        {
            "name": "BsmtFinSF1",
            "type": "integer"
        },
        {
            "name": "BsmtFinType2",
            "type": "string"
        },
        {
            "name": "BsmtFinSF2",
            "type": "integer"
        },
        {
            "name": "BsmtUnfSF",
            "type": "integer"
        },
        {
            "name": "TotalBsmtSF",
            "type": "integer"
        },
        {
            "name": "Heating",
            "type": "string"
        },
        {
            "name": "HeatingQC",
            "type": "string"
        },
        {
            "name": "CentralAir",
            "type": "boolean"
        },
        {
            "name": "Electrical",
            "type": "string"
        },
        {
            "name": "X1stFlrSF",
            "type": "integer"
        },
        {
            "name": "X2ndFlrSF",
            "type": "integer"
        },
        {
            "name": "LowQualFinSF",
            "type": "integer"
        },
        {
            "name": "GrLivArea",
            "type": "integer"
        },
        {
            "name": "BsmtFullBath",
            "type": "integer"
        },
        {
            "name": "BsmtHalfBath",
            "type": "integer"
        },
        {
            "name": "FullBath",
            "type": "integer"
        },
        {
            "name": "HalfBath",
            "type": "integer"
        },
        {
            "name": "BedroomAbvGr",
            "type": "integer"
        },
        {
            "name": "KitchenAbvGr",
            "type": "integer"
        },
        {
            "name": "KitchenQual",
            "type": "string"
        },
        {
            "name": "TotRmsAbvGrd",
            "type": "integer"
        },
        {
            "name": "Functional",
            "type": "string"
        },
        {
            "name": "Fireplaces",
            "type": "integer"
        },
        {
            "name": "FireplaceQu",
            "type": "string"
        },
        {
            "name": "GarageType",
            "type": "string"
        },
        {
            "name": "GarageYrBlt",
            "type": "float"
        },
        {
            "name": "GarageFinish",
            "type": "string"
        },
        {
            "name": "GarageCars",
            "type": "integer"
        },
        {
            "name": "GarageArea",
            "type": "integer"
        },
        {
            "name": "GarageQual",
            "type": "string"
        },
        {
            "name": "GarageCond",
            "type": "string"
        },
        {
            "name": "PavedDrive",
            "type": "string"
        },
        {
            "name": "WoodDeckSF",
            "type": "integer"
        },
        {
            "name": "OpenPorchSF",
            "type": "integer"
        },
        {
            "name": "EnclosedPorch",
            "type": "integer"
        },
        {
            "name": "X3SsnPorch",
            "type": "integer"
        },
        {
            "name": "ScreenPorch",
            "type": "integer"
        },
        {
            "name": "PoolArea",
            "type": "integer"
        },
        {
            "name": "PoolQC",
            "type": "string"
        },
        {
            "name": "Fence",
            "type": "string"
        },
        {
            "name": "MiscFeature",
            "type": "string"
        },
        {
            "name": "MiscVal",
            "type": "integer"
        },
        {
            "name": "MoSold",
            "type": "integer"
        },
        {
            "name": "YrSold",
            "type": "integer"
        },
        {
            "name": "SaleType",
            "type": "string"
        },
        {
            "name": "SaleCondition",
            "type": "string"
        },
        {
            "name": "SalePrice",
            "type": "integer"
        }
    ],
    "approx_size": 1460,
    "page": {
        "rows": [
            {
                "row": {
                    "Id": 1,
                    "MSSubClass": 60,
                    "MSZoning": "RL",
                    "LotFrontage": 65.0,
                    "LotArea": 8450,
                    "Street": "Pave",
                    "Alley": null,
                    "LotShape": "Reg",
                    "LandContour": "Lvl",
                    "Utilities": "AllPub",
                    "LotConfig": "Inside",
                    "LandSlope": "Gtl",
                    "Neighborhood": "CollgCr",
                    "Condition1": "Norm",
                    "Condition2": "Norm",
                    "BldgType": "1Fam",
                    "HouseStyle": "2Story",
                    "OverallQual": 7,
                    "OverallCond": 5,
                    "YearBuilt": 2003,
                    "YearRemodAdd": 2003,
                    "RoofStyle": "Gable",
                    "RoofMatl": "CompShg",
                    "Exterior1st": "VinylSd",
                    "Exterior2nd": "VinylSd",
                    "MasVnrType": "BrkFace",
                    "MasVnrArea": 196.0,
                    "ExterQual": "Gd",
                    "ExterCond": "TA",
                    "Foundation": "PConc",
                    "BsmtQual": "Gd",
                    "BsmtCond": "TA",
                    "BsmtExposure": "No",
                    "BsmtFinType1": "GLQ",
                    "BsmtFinSF1": 706,
                    "BsmtFinType2": "Unf",
                    "BsmtFinSF2": 0,
                    "BsmtUnfSF": 150,
                    "TotalBsmtSF": 856,
                    "Heating": "GasA",
                    "HeatingQC": "Ex",
                    "CentralAir": true,
                    "Electrical": "SBrkr",
                    "X1stFlrSF": 856,
                    "X2ndFlrSF": 854,
                    "LowQualFinSF": 0,
                    "GrLivArea": 1710,
                    "BsmtFullBath": 1,
                    "BsmtHalfBath": 0,
                    "FullBath": 2,
                    "HalfBath": 1,
                    "BedroomAbvGr": 3,
                    "KitchenAbvGr": 1,
                    "KitchenQual": "Gd",
                    "TotRmsAbvGrd": 8,
                    "Functional": "Typ",
                    "Fireplaces": 0,
                    "FireplaceQu": null,
                    "GarageType": "Attchd",
                    "GarageYrBlt": 2003.0,
                    "GarageFinish": "RFn",
                    "GarageCars": 2,
                    "GarageArea": 548,
                    "GarageQual": "TA",
                    "GarageCond": "TA",
                    "PavedDrive": "Y",
                    "WoodDeckSF": 0,
                    "OpenPorchSF": 61,
                    "EnclosedPorch": 0,
                    "X3SsnPorch": 0,
                    "ScreenPorch": 0,
                    "PoolArea": 0,
                    "PoolQC": null,
                    "Fence": null,
                    "MiscFeature": null,
                    "MiscVal": 0,
                    "MoSold": 2,
                    "YrSold": 2008,
                    "SaleType": "WD",
                    "SaleCondition": "Normal",
                    "SalePrice": 208500
                },
                "row_id": 1,
                "url": "https://csvbase.com/rmirror/Housing-Prices-dataset/rows/1"
            }
        ],
        "previous_page_url": null,
        "next_page_url": "https://csvbase.com/rmirror/Housing-Prices-dataset?op=gt&n=1"
    }
}

Note that there is the top-level metadata, plus a "page" of rows. Tables are often (usually) too big to be put into a single JSON object so they are "paginated". To follow the table, page by page, you can use the next_page_url and previous_page_url dictionary keys. They will be null if you've reached the end or are at the beginning, respectively.

Reading a table

GET from https://csvbase.com/rmirror/Housing-Prices-dataset

You'll need to follow the next_page_url urls (described above) to get to the end of the table.

Rows

Rows from rmirror/Housing-Prices-dataset look like this in JSON:

{
    "row": {
        "Id": 1,
        "MSSubClass": 60,
        "MSZoning": "RL",
        "LotFrontage": 65.0,
        "LotArea": 8450,
        "Street": "Pave",
        "Alley": null,
        "LotShape": "Reg",
        "LandContour": "Lvl",
        "Utilities": "AllPub",
        "LotConfig": "Inside",
        "LandSlope": "Gtl",
        "Neighborhood": "CollgCr",
        "Condition1": "Norm",
        "Condition2": "Norm",
        "BldgType": "1Fam",
        "HouseStyle": "2Story",
        "OverallQual": 7,
        "OverallCond": 5,
        "YearBuilt": 2003,
        "YearRemodAdd": 2003,
        "RoofStyle": "Gable",
        "RoofMatl": "CompShg",
        "Exterior1st": "VinylSd",
        "Exterior2nd": "VinylSd",
        "MasVnrType": "BrkFace",
        "MasVnrArea": 196.0,
        "ExterQual": "Gd",
        "ExterCond": "TA",
        "Foundation": "PConc",
        "BsmtQual": "Gd",
        "BsmtCond": "TA",
        "BsmtExposure": "No",
        "BsmtFinType1": "GLQ",
        "BsmtFinSF1": 706,
        "BsmtFinType2": "Unf",
        "BsmtFinSF2": 0,
        "BsmtUnfSF": 150,
        "TotalBsmtSF": 856,
        "Heating": "GasA",
        "HeatingQC": "Ex",
        "CentralAir": true,
        "Electrical": "SBrkr",
        "X1stFlrSF": 856,
        "X2ndFlrSF": 854,
        "LowQualFinSF": 0,
        "GrLivArea": 1710,
        "BsmtFullBath": 1,
        "BsmtHalfBath": 0,
        "FullBath": 2,
        "HalfBath": 1,
        "BedroomAbvGr": 3,
        "KitchenAbvGr": 1,
        "KitchenQual": "Gd",
        "TotRmsAbvGrd": 8,
        "Functional": "Typ",
        "Fireplaces": 0,
        "FireplaceQu": null,
        "GarageType": "Attchd",
        "GarageYrBlt": 2003.0,
        "GarageFinish": "RFn",
        "GarageCars": 2,
        "GarageArea": 548,
        "GarageQual": "TA",
        "GarageCond": "TA",
        "PavedDrive": "Y",
        "WoodDeckSF": 0,
        "OpenPorchSF": 61,
        "EnclosedPorch": 0,
        "X3SsnPorch": 0,
        "ScreenPorch": 0,
        "PoolArea": 0,
        "PoolQC": null,
        "Fence": null,
        "MiscFeature": null,
        "MiscVal": 0,
        "MoSold": 2,
        "YrSold": 2008,
        "SaleType": "WD",
        "SaleCondition": "Normal",
        "SalePrice": 208500
    },
    "row_id": 1,
    "url": "https://csvbase.com/rmirror/Housing-Prices-dataset/rows/1"
}

Creating a new row

POST to https://<some_user>:<some_api_key>@csvbase.com/rmirror/Housing-Prices-dataset/rows/

Example body
{
    "row": {
        "Id": 1,
        "MSSubClass": 60,
        "MSZoning": "RL",
        "LotFrontage": 65.0,
        "LotArea": 8450,
        "Street": "Pave",
        "Alley": null,
        "LotShape": "Reg",
        "LandContour": "Lvl",
        "Utilities": "AllPub",
        "LotConfig": "Inside",
        "LandSlope": "Gtl",
        "Neighborhood": "CollgCr",
        "Condition1": "Norm",
        "Condition2": "Norm",
        "BldgType": "1Fam",
        "HouseStyle": "2Story",
        "OverallQual": 7,
        "OverallCond": 5,
        "YearBuilt": 2003,
        "YearRemodAdd": 2003,
        "RoofStyle": "Gable",
        "RoofMatl": "CompShg",
        "Exterior1st": "VinylSd",
        "Exterior2nd": "VinylSd",
        "MasVnrType": "BrkFace",
        "MasVnrArea": 196.0,
        "ExterQual": "Gd",
        "ExterCond": "TA",
        "Foundation": "PConc",
        "BsmtQual": "Gd",
        "BsmtCond": "TA",
        "BsmtExposure": "No",
        "BsmtFinType1": "GLQ",
        "BsmtFinSF1": 706,
        "BsmtFinType2": "Unf",
        "BsmtFinSF2": 0,
        "BsmtUnfSF": 150,
        "TotalBsmtSF": 856,
        "Heating": "GasA",
        "HeatingQC": "Ex",
        "CentralAir": true,
        "Electrical": "SBrkr",
        "X1stFlrSF": 856,
        "X2ndFlrSF": 854,
        "LowQualFinSF": 0,
        "GrLivArea": 1710,
        "BsmtFullBath": 1,
        "BsmtHalfBath": 0,
        "FullBath": 2,
        "HalfBath": 1,
        "BedroomAbvGr": 3,
        "KitchenAbvGr": 1,
        "KitchenQual": "Gd",
        "TotRmsAbvGrd": 8,
        "Functional": "Typ",
        "Fireplaces": 0,
        "FireplaceQu": null,
        "GarageType": "Attchd",
        "GarageYrBlt": 2003.0,
        "GarageFinish": "RFn",
        "GarageCars": 2,
        "GarageArea": 548,
        "GarageQual": "TA",
        "GarageCond": "TA",
        "PavedDrive": "Y",
        "WoodDeckSF": 0,
        "OpenPorchSF": 61,
        "EnclosedPorch": 0,
        "X3SsnPorch": 0,
        "ScreenPorch": 0,
        "PoolArea": 0,
        "PoolQC": null,
        "Fence": null,
        "MiscFeature": null,
        "MiscVal": 0,
        "MoSold": 2,
        "YrSold": 2008,
        "SaleType": "WD",
        "SaleCondition": "Normal",
        "SalePrice": 208500
    }
}
Example response
{
    "row": {
        "Id": 1,
        "MSSubClass": 60,
        "MSZoning": "RL",
        "LotFrontage": 65.0,
        "LotArea": 8450,
        "Street": "Pave",
        "Alley": null,
        "LotShape": "Reg",
        "LandContour": "Lvl",
        "Utilities": "AllPub",
        "LotConfig": "Inside",
        "LandSlope": "Gtl",
        "Neighborhood": "CollgCr",
        "Condition1": "Norm",
        "Condition2": "Norm",
        "BldgType": "1Fam",
        "HouseStyle": "2Story",
        "OverallQual": 7,
        "OverallCond": 5,
        "YearBuilt": 2003,
        "YearRemodAdd": 2003,
        "RoofStyle": "Gable",
        "RoofMatl": "CompShg",
        "Exterior1st": "VinylSd",
        "Exterior2nd": "VinylSd",
        "MasVnrType": "BrkFace",
        "MasVnrArea": 196.0,
        "ExterQual": "Gd",
        "ExterCond": "TA",
        "Foundation": "PConc",
        "BsmtQual": "Gd",
        "BsmtCond": "TA",
        "BsmtExposure": "No",
        "BsmtFinType1": "GLQ",
        "BsmtFinSF1": 706,
        "BsmtFinType2": "Unf",
        "BsmtFinSF2": 0,
        "BsmtUnfSF": 150,
        "TotalBsmtSF": 856,
        "Heating": "GasA",
        "HeatingQC": "Ex",
        "CentralAir": true,
        "Electrical": "SBrkr",
        "X1stFlrSF": 856,
        "X2ndFlrSF": 854,
        "LowQualFinSF": 0,
        "GrLivArea": 1710,
        "BsmtFullBath": 1,
        "BsmtHalfBath": 0,
        "FullBath": 2,
        "HalfBath": 1,
        "BedroomAbvGr": 3,
        "KitchenAbvGr": 1,
        "KitchenQual": "Gd",
        "TotRmsAbvGrd": 8,
        "Functional": "Typ",
        "Fireplaces": 0,
        "FireplaceQu": null,
        "GarageType": "Attchd",
        "GarageYrBlt": 2003.0,
        "GarageFinish": "RFn",
        "GarageCars": 2,
        "GarageArea": 548,
        "GarageQual": "TA",
        "GarageCond": "TA",
        "PavedDrive": "Y",
        "WoodDeckSF": 0,
        "OpenPorchSF": 61,
        "EnclosedPorch": 0,
        "X3SsnPorch": 0,
        "ScreenPorch": 0,
        "PoolArea": 0,
        "PoolQC": null,
        "Fence": null,
        "MiscFeature": null,
        "MiscVal": 0,
        "MoSold": 2,
        "YrSold": 2008,
        "SaleType": "WD",
        "SaleCondition": "Normal",
        "SalePrice": 208500
    },
    "row_id": 1,
    "url": "https://csvbase.com/rmirror/Housing-Prices-dataset/rows/1"
}

Status code 201 upon success.

Reading a row

GET from https://csvbase.com/rmirror/Housing-Prices-dataset/rows/1

No body is provided with this request. Status code 200 upon success.

Example response
{
    "row": {
        "Id": 1,
        "MSSubClass": 60,
        "MSZoning": "RL",
        "LotFrontage": 65.0,
        "LotArea": 8450,
        "Street": "Pave",
        "Alley": null,
        "LotShape": "Reg",
        "LandContour": "Lvl",
        "Utilities": "AllPub",
        "LotConfig": "Inside",
        "LandSlope": "Gtl",
        "Neighborhood": "CollgCr",
        "Condition1": "Norm",
        "Condition2": "Norm",
        "BldgType": "1Fam",
        "HouseStyle": "2Story",
        "OverallQual": 7,
        "OverallCond": 5,
        "YearBuilt": 2003,
        "YearRemodAdd": 2003,
        "RoofStyle": "Gable",
        "RoofMatl": "CompShg",
        "Exterior1st": "VinylSd",
        "Exterior2nd": "VinylSd",
        "MasVnrType": "BrkFace",
        "MasVnrArea": 196.0,
        "ExterQual": "Gd",
        "ExterCond": "TA",
        "Foundation": "PConc",
        "BsmtQual": "Gd",
        "BsmtCond": "TA",
        "BsmtExposure": "No",
        "BsmtFinType1": "GLQ",
        "BsmtFinSF1": 706,
        "BsmtFinType2": "Unf",
        "BsmtFinSF2": 0,
        "BsmtUnfSF": 150,
        "TotalBsmtSF": 856,
        "Heating": "GasA",
        "HeatingQC": "Ex",
        "CentralAir": true,
        "Electrical": "SBrkr",
        "X1stFlrSF": 856,
        "X2ndFlrSF": 854,
        "LowQualFinSF": 0,
        "GrLivArea": 1710,
        "BsmtFullBath": 1,
        "BsmtHalfBath": 0,
        "FullBath": 2,
        "HalfBath": 1,
        "BedroomAbvGr": 3,
        "KitchenAbvGr": 1,
        "KitchenQual": "Gd",
        "TotRmsAbvGrd": 8,
        "Functional": "Typ",
        "Fireplaces": 0,
        "FireplaceQu": null,
        "GarageType": "Attchd",
        "GarageYrBlt": 2003.0,
        "GarageFinish": "RFn",
        "GarageCars": 2,
        "GarageArea": 548,
        "GarageQual": "TA",
        "GarageCond": "TA",
        "PavedDrive": "Y",
        "WoodDeckSF": 0,
        "OpenPorchSF": 61,
        "EnclosedPorch": 0,
        "X3SsnPorch": 0,
        "ScreenPorch": 0,
        "PoolArea": 0,
        "PoolQC": null,
        "Fence": null,
        "MiscFeature": null,
        "MiscVal": 0,
        "MoSold": 2,
        "YrSold": 2008,
        "SaleType": "WD",
        "SaleCondition": "Normal",
        "SalePrice": 208500
    },
    "row_id": 1,
    "url": "https://csvbase.com/rmirror/Housing-Prices-dataset/rows/1"
}

Updating an existing row

PUT to https://<some_user>:<some_api_key>@csvbase.com/rmirror/Housing-Prices-dataset/rows/1

Example body
{
    "row": {
        "Id": 1,
        "MSSubClass": 60,
        "MSZoning": "RL",
        "LotFrontage": 65.0,
        "LotArea": 8450,
        "Street": "Pave",
        "Alley": null,
        "LotShape": "Reg",
        "LandContour": "Lvl",
        "Utilities": "AllPub",
        "LotConfig": "Inside",
        "LandSlope": "Gtl",
        "Neighborhood": "CollgCr",
        "Condition1": "Norm",
        "Condition2": "Norm",
        "BldgType": "1Fam",
        "HouseStyle": "2Story",
        "OverallQual": 7,
        "OverallCond": 5,
        "YearBuilt": 2003,
        "YearRemodAdd": 2003,
        "RoofStyle": "Gable",
        "RoofMatl": "CompShg",
        "Exterior1st": "VinylSd",
        "Exterior2nd": "VinylSd",
        "MasVnrType": "BrkFace",
        "MasVnrArea": 196.0,
        "ExterQual": "Gd",
        "ExterCond": "TA",
        "Foundation": "PConc",
        "BsmtQual": "Gd",
        "BsmtCond": "TA",
        "BsmtExposure": "No",
        "BsmtFinType1": "GLQ",
        "BsmtFinSF1": 706,
        "BsmtFinType2": "Unf",
        "BsmtFinSF2": 0,
        "BsmtUnfSF": 150,
        "TotalBsmtSF": 856,
        "Heating": "GasA",
        "HeatingQC": "Ex",
        "CentralAir": true,
        "Electrical": "SBrkr",
        "X1stFlrSF": 856,
        "X2ndFlrSF": 854,
        "LowQualFinSF": 0,
        "GrLivArea": 1710,
        "BsmtFullBath": 1,
        "BsmtHalfBath": 0,
        "FullBath": 2,
        "HalfBath": 1,
        "BedroomAbvGr": 3,
        "KitchenAbvGr": 1,
        "KitchenQual": "Gd",
        "TotRmsAbvGrd": 8,
        "Functional": "Typ",
        "Fireplaces": 0,
        "FireplaceQu": null,
        "GarageType": "Attchd",
        "GarageYrBlt": 2003.0,
        "GarageFinish": "RFn",
        "GarageCars": 2,
        "GarageArea": 548,
        "GarageQual": "TA",
        "GarageCond": "TA",
        "PavedDrive": "Y",
        "WoodDeckSF": 0,
        "OpenPorchSF": 61,
        "EnclosedPorch": 0,
        "X3SsnPorch": 0,
        "ScreenPorch": 0,
        "PoolArea": 0,
        "PoolQC": null,
        "Fence": null,
        "MiscFeature": null,
        "MiscVal": 0,
        "MoSold": 2,
        "YrSold": 2008,
        "SaleType": "WD",
        "SaleCondition": "Normal",
        "SalePrice": 208500
    },
    "row_id": 1,
    "url": "https://csvbase.com/rmirror/Housing-Prices-dataset/rows/1"
}
Response

Upon success the body you sent will be echoed back, with status code 200.

Deleting a row

DELETE from https://<some_user>:<some_api_key>@csvbase.com/rmirror/Housing-Prices-dataset/rows/1

No body is required. Status code 204 upon success.