--- title: Anime Studio Store --- # Anime Studio Store Endpoint The anime studio store endpoint creates a new anime studio and returns the new anime studio resource. For example, the `/animestudio/bakemonogatari/shaft` endpoint will create a new association between the Bakemonogatari anime and the Shaft studio. ## URL ```sh POST /animestudio/{anime:slug}/{studio:slug} ``` ## Authentication **Required Permission**: create anime, create studio **Roles with Permission**: Content Moderator, Encoder, Admin ## Parameters None ## Response ```json { animestudio: { created_at: "created_at", updated_at: "updated_at" } } ``` ## Example ```bash curl -X POST -H "Authorization: Bearer {token}" https://api.animethemes.moe/animestudio/bakemonogatari/shaft ```