RESTful

Access and manage your data 100% through the REST API.

GET
/{bucket}/sets/users/items
RESPONSE BODY
[
  {
    "first_name": "Lissi",
    "last_name": "Ticehurst",
    "email": "lticehurst2f@oracle.com",
    "_id": "4h7pmkt0am59dr86",
    "_createdAt": 1652325906198,
    "_updatedAt": 1652325906198
  }
]

Filterable

Proxy requests to the S3 Select API for SQL-like filtering.

POST
/{bucket}/sets/users/query?email=like:velma
RESPONSE BODY
[
  {
    "id": 20,
    "first_name": "Velma",
    "last_name": "Omand",
    "email": "velma.asdf@mysterymachine.org",
    "ip_address": "188.130.239.149",
    "job_title": "Administrative Assistant III",
    "_id": "obhxfii36ldhscoc",
    "_createdAt": 1652325906197,
    "_updatedAt": 1652325906197
  }
]

Editable

Add, edit, create, and delete via the API. No more file downloads.

PUT
/{bucket}/sets/users/items?_id=obhxfii36ldhscoc
REQUEST BODY
{
  "city": "San Francisco"
}
RESPONSE BODY
{
  "message": "Successfully updated 1 item."
}

Extendable

It's open source. Customize it to fit your use cases.

NotoDB Cloud New!

A cloud-version of the NotoDB service with an online web interface to manage your data. No installs required. All you need is your AWS IAM credentials.

Try it out
App screenshot