diff --git a/app/controllers/api/activitypub/accounts_controller.rb b/app/controllers/api/activitypub/accounts_controller.rb
index efb6413a0dc1ab396115c6c848f3613e7f83a986..82936f0621b6f02433cbaef95f60da05a781a7d2 100644
--- a/app/controllers/api/activitypub/accounts_controller.rb
+++ b/app/controllers/api/activitypub/accounts_controller.rb
@@ -1,9 +1,7 @@
 # frozen_string_literal: true
 
 class Api::Activitypub::AccountsController < ApiController
-  before_action -> { doorkeeper_authorize! :read }, except: [:show]
-  before_action :require_user!, except: [:show]
-  before_action :set_account, except: [:verify_credentials, :suggestions, :search]
+  before_action :set_account
 
   respond_to :'application/activity+json'
   respond_to :'application/ld+json; profile="https://www.w3.org/ns/activitystreams#"'
diff --git a/config/routes.rb b/config/routes.rb
index f831c42398488066c4ac5d08c460a90dee92688f..4d0138b825d447dd665783bcc375af3a3fe56a7a 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -154,9 +154,7 @@ Rails.application.routes.draw do
     end
 
     namespace :activitypub do
-      resources :accounts do
-        get '/:id', to: 'accounts#show'
-      end
+      resources :accounts, only: [:show]
     end
 
     namespace :web do