Hi @gutisAlex,
It sounds like you would like to include the Access Token you receive from Auth0 as the bearer token in the Authorization requests made by Axios hooks. Is that correct?
It looks like you can include headers in the Request Config object:
const [{ data, loading, error }, refetch] = useAxios({
url: "https://your-api-url"
headers: {'Authorization': `bearer ${accessToken}`}
})