How to Connect Eight to an AI Agent
Auth setup
1. Eight Developer Portalでアプリ登録. 2. OAuth認証フロー. 3. Authorization: Bearer {access_token}.
Key facts
| Base URL | https://api.8card.net/v1/ |
| API version | v1 |
| Auth | OAuth 2.0. Sansan提供の名刺管理個人向けサービス. Developer登録でアプリ作成. |
| Token URL | https://api.8card.net/oauth/token |
| Scopes | read_cards, read_profile |
| Request body | application/json |
| Pagination | offset + limit. |
| Rate limit | Not documented. Recommended: 30 req/min. |
| Error format | JSON: {"error":"...","error_description":"..."} |
Key endpoints
| Method | Path | Description |
GET | /cards | List business cards (名刺一覧) |
GET | /cards/{id} | Get card details |
GET | /me | Get authenticated user profile |
Quickstart
GET /v1/cards?limit=20
Authorization: Bearer {access_token}
Response: {"cards":[{"id":"...","company_name":"...","person_name":"...","email":"...",...}]}
Agent pitfalls & tips
- Sansan提供の個人向け名刺管理 — Sansanは法人向け.
- 名刺データはOCR + 手入力で精度が高い.
- 個人の名刺データにPII含む — APPI準拠の取扱必須.
- APIは読み取り専用が中心 — 名刺の追加はアプリ経由.
- Sansan APIとは別系統 — 認証もエンドポイントも異なる.
Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change — verify against the official docs before production use.
Frequently Asked Questions
What is Eight's AEO score?
▼
Eight has an AEO score of 0.80 and is rated A (Functional agent integration). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is Eight AI-agent-ready?
▼
Eight is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does Eight compare to other CRM & Sales services?
▼
In the CRM & Sales category, Eight is rated A. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how Eight compares.
How can I integrate Eight with an AI agent?
▼
The fastest way to integrate Eight with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server — then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with Eight?
▼
OAuth 2.0. Sansan提供の名刺管理個人向けサービス. Developer登録でアプリ作成. Setup: 1. Eight Developer Portalでアプリ登録. 2. OAuth認証フロー. 3. Authorization: Bearer {access_token}.
What are Eight's API rate limits?
▼
Not documented. Recommended: 30 req/min.