Get Started in 15 Minutes

1. Create an Account
2. Upload an Image
3. Highlight Regions
4. Apply Edits

```python
# Sample Python snippet to upload and highlight
from marktool import MarkTool
client = MarkTool(api_key='YOUR_API_KEY')
image = client.upload_image('photo.jpg')
highlight = client.highlight_region(image, coords=[(x1,y1), (x2,y2)])
edited = client.apply_edit(highlight, edits={'brightness': +10})
```
Slide 6 of 12