A centralized "about me" service that provides a single URL for AI tools and applications to fetch user profile data.
In this AI era, you constantly need to provide context about yourself:
- When using new AI tools or chatbots
- When building demo portfolio sites
- When sharing your info across platforms
About Me API solves this by giving you a single URL that returns all your information in a structured format.
- Single URL for AI Context: Give any AI tool your personal API endpoint
- Progressive Profile Builder: Fill in your details, then sign up to save
- Versioned Assets: Upload multiple profile images, use "v1" or "v2" as needed
- Analytics Dashboard: Track who's accessing your profile API
- Privacy Controls: Choose what's public vs private
- Frontend: Next.js 15 (App Router) + TypeScript + Tailwind CSS
- Backend: Supabase Edge Functions (Deno)
- Database: PostgreSQL (Supabase)
- Auth: Supabase Auth (cookie-based SSR)
- Storage: Supabase Storage
- UI: shadcn/ui components
- Node.js 20.9+
- Supabase account
- Clone the repository
- Create a Supabase project at database.new
- Copy
.env.exampleto.env.localand fill in your Supabase credentials:NEXT_PUBLIC_SUPABASE_URL=your-project-url NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=your-publishable-key
- Install dependencies:
npm install
- Run the development server:
npm run dev
- Open http://localhost:3000
# Get public profile
curl https://about-me-api.xyz/api/nilesh
# Response
{
"username": "nilesh",
"identity": {
"name": { "first": "Nilesh", "last": "Patel" },
"bio": "Backend developer passionate about distributed systems"
},
"presence": {
"socials": {
"github": "https://github.com/username"
}
},
"assets": {
"avatar": "https://about-me-api.xyz/nilesh/avatar"
}
}├── app/ # Next.js App Router pages
│ ├── auth/ # Auth pages (login, signup)
│ ├── protected/ # Protected routes (dashboard)
│ └── page.tsx # Landing page
├── components/ # React components (shadcn/ui)
├── lib/
│ └── supabase/ # Supabase client utilities
├── supabase/ # Supabase Edge Functions
│ └── functions/
└── shema-demo.json # Profile schema reference
See shema-demo.json for the complete profile data structure including:
- Identity (name, bio, DOB)
- Location (hometown, current city, timezone)
- Contact (emails, phones - with privacy settings)
- Presence (social links, competitive programming profiles)
- Career (current status, roles, preferences)
- Assets (versioned profile images)
- Artifacts (resumes, projects)
- Experience (work history)
- Public fields visible to anyone with your URL
- Private fields require API key authentication
- You control what's shared
MIT