Kakao API

2025-latest · active · verified Sat Feb 28

Kakao REST API provides access to Kakao Login, KakaoTalk messaging, friends list, maps, and AI features. Primary documentation is in Korean. English docs exist but are incomplete and lag behind Korean versions. No official Python/Node package — all integrations use REST API directly with app keys.

Warnings

Install

Imports

Quickstart

Retrieve Kakao user info using a valid access token.

import requests

# Get user info with access token
headers = {
    'Authorization': f'Bearer {ACCESS_TOKEN}'
}
response = requests.get(
    'https://kapi.kakao.com/v2/user/me',
    headers=headers
)
print(response.json())

view raw JSON →