# Common Parse API Operations

### Get schema

```
curl -X GET \<br></br>  -H "X-Parse-Application-Id: ${APPLICATION_ID}" \<br></br>  -H "X-Parse-Master-Key: ${MASTER_KEY}" \<br></br>  -H "Content-Type: application/json" \<br></br>  https://wiki.twcloud.tech:1337/parse/schemas 
```

### Drop schema

```
curl -X DELETE\<br></br>  -H "X-Parse-Application-Id: ${APPLICATION_ID}" \<br></br>  -H "X-Parse-Master-Key: ${MASTER_KEY}" \<br></br>  -H "Content-Type: application/json" \<br></br>  https://api.parse.com/1/schemas/${SCHEMA}
```