connection->requestAndParse( 'GET', 'tag' ); } /** * @throws BaseException|GuzzleException */ public function get(string $tagId): TagEntity { $data = $this->connection->requestAndParse( 'GET', 'tag/'.urlencode(trim($tagId)), [ RequestOptions::QUERY => $this->getQuery() ] ); return new TagEntity($data); } }