Thanks for the reply @eviltrout!
Here you go
# app/controllers/reflections_controller.rb
class ReflectionsController < ActionController::Base
def index
render json: { title: "reflection title", description: "reflection description" }
end
end