Skip to content

Developer Tools Overview

Kitsu provides multiple ways to interact with internal features:

Raw queries

Create entity

python
gazu.client.post("data/projects", {"name": "My new Project"})

Find and List entities

python
gazu.client.get("data/projects")

Update entity

python
gazu.client.put(
  "data/projects/<project-id>", 
  {"name": "My new Project updated"}
)

Delete entity

python
gazu.client.delete("data/projects/<project-id>")