Skip to main content

1. Get Your API Key

Sign up at keyapi.ai and navigate to your dashboard to obtain an API key.

2. Make Your First Request

All requests use Bearer authentication. Pass your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.keyapi.ai/v1/tiktok/influencer/detail?unique_id=karladelatorre97"

3. Check the Response

A successful response looks like:
{
  "code": 0,
  "message": "success",
  "data": {
    "status_code": 0,
    "status_msg": "",
    "user": { ... }
  }
}
code: 0 means success. Any non-zero code indicates an error — check message for details.

Next Steps

  • Read the Authentication guide for full auth details.
  • Browse endpoints in the platform sections (TikTok, Instagram, etc.) in the sidebar.