# Using the REST API

## CRUD Operations

| CRUD Operation | REST                                | SQL    | SDK API         |
| -------------- | ----------------------------------- | ------ | --------------- |
| Create         | PUT, POST (with no rowid specified) | INSERT | $$.Api.create() |
| Read           | GET                                 | SELECT | $$.Api.select() |
| Update         | PUT, POST (requires rowid)          | UPDATE | $$.Api.update() |
| Delete         | DELETE (requires rowid)             | DELETE | $$.Api.delete() |
