DeveloperTapfolio Docs v1.0

Developer REST API Reference

Programmatic reference for profile lookups, vCards, and dynamic theme settings configuration.


Tapfolio exposes public endpoints for developers. You can fetch profile details in JSON formats or request standard `.vcf` vCards directly using clean HTTP requests.

Code Example

// Example Profile API Lookup
fetch('https://www.tapfolio.me/api/profile/abhinand')
  .then(res => res.json())
  .then(data => console.log(data.profile.name));