Airdrop Tracker API

에어드랍 이벤트 정보를 조회할 수 있는 공개 API입니다. 인증 없이 사용 가능합니다.

Base URL

https://airdrop-tracker-eced.onrender.com

Rate Limits

제한
IP당 분당 요청30회
IP당 일일 요청500회
전체 서버 분당300회

초과 시 429 Too Many Requests 응답. Retry-After 헤더 참고.

Endpoints

GET/api/events

최근 이벤트 목록 조회

Query Parameters:

파라미터기본값설명
limit20조회 개수 (최대 50)

응답 예시:

{
  "events": [
    {
      "id": 42,
      "event_name": "ExampleDrop Airdrop",
      "google_form_link": "https://forms.gle/...",
      "twitter_task_links": "[\"https://x.com/...\"]",
      "airdrop_date": "2026-04-10",
      "created_at": "2026-04-04T12:00:00"
    }
  ],
  "count": 1
}
GET/api/events/{id}

특정 이벤트 상세 조회

응답 예시:

{
  "event": {
    "id": 42,
    "event_name": "ExampleDrop Airdrop",
    "google_form_link": "https://forms.gle/...",
    "twitter_task_links": "[\"https://x.com/...\"]",
    "airdrop_date": "2026-04-10",
    "announce_text": "...",
    "original_tg_link": "https://t.me/c/...",
    "created_at": "2026-04-04T12:00:00"
  }
}

Chrome MCP 연동 예시

Claude Code에서 이 API와 Chrome 자동화를 결합하여 이벤트에 자동 참여할 수 있습니다:

# 1. 이벤트 목록 조회
curl https://airdrop-tracker-eced.onrender.com/api/events

# 2. 특정 이벤트의 구글폼 링크 확인
curl https://airdrop-tracker-eced.onrender.com/api/events/42

# 3. Claude Code + Chrome MCP로 폼 제출
#    (각자의 로컬 환경에서 실행)

Error Codes

코드설명
200성공
400잘못된 요청 (유효하지 않은 ID 등)
404이벤트를 찾을 수 없음
429요청 횟수 초과
500서버 내부 오류
503데이터베이스 미초기화