← Back to Productivity & Business
CardSnap
Business card scanner
https://hub.toolweb.in/tools/cardsnap/
Endpoints
GET
/
Root
GET
/health
Health
POST
/cards
Create Card
Request Body (JSON)
{
"slug": "<string>",
"data": "<string>"
}
GET
/cards/{slug}
Get Card
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| slug | path | string | ✓ | Slug |
PUT
/cards/{slug}
Update Card
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| slug | path | string | ✓ | Slug |
Request Body (JSON)
{
"data": "<string>"
}
DELETE
/cards/{slug}
Delete Card
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| slug | path | string | ✓ | Slug |
POST
/cards/{slug}/analytics
Track Event
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| slug | path | string | ✓ | Slug |
Request Body (JSON)
{
"event": "<string>"
}
GET
/cards/{slug}/analytics
Get Analytics
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| slug | path | string | ✓ | Slug |
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/tools/cardsnap/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/cardsnap/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/cardsnap/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.