Aníbal Oliveira

Lead Mentor

@

@

transformation.space

transformation.space

Welcome to my journey in Product, spanning UX Design, FE Development, Marketing, and Management.
I'm Aníbal, a passionate professional transforming ideas into impactful digital solutions for two decades.

🔹 Expertise in AI, IoT, Ecommerce, and Cloud, across SaaS, B2B and B2C, in startups and large enterprises.
🔹 Founded an E2E web business, generating leads, acquiring clients, leading a team, and fostering relationships.
🔹 Fully immersed in intensive PM, PO, and AI training since June 2024 to accelerate my career transition.
🔹 Mini-MBA in Product Management and Certified Professional Scrum Product Owner II (PSPO II).
🔹 Extensive training across Product Leadership, Discovery, Strategy, Delivery, Growth, Data, AI, and Web3.

I'm versatile, curious and resilient. 💪

in

Chat on WhatsApp
  
import requests

url = "https://api.firecrawl.dev/v2/map"

payload = {
  "url": "https://thetransformation.space",
  "limit": 5000,
  "includeSubdomains": False,
  "sitemap": "include",
  "origin": "website"
}

headers = {
    "Authorization": "Bearer fc-a4db1c5dc5ec47e79a4e4164781971ad",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())