Skip to main content

Get Profile

Retrieve your user profile and account information.

Endpoint

GET /v1/user/profile

Example Request

curl -X GET "https://api.scrapebit.com/v1/user/profile" \
-H "Authorization: Bearer YOUR_API_KEY"

Response

{
"success": true,
"data": {
"id": "user_abc123",
"email": "user@example.com",
"name": "John Doe",
"plan": {
"name": "Pro",
"credits_included": 1000,
"features": [
"Unlimited scrapes",
"PDF generation",
"Screenshot capture",
"Scheduling",
"Deep research",
"Priority support"
]
},
"credits": {
"balance": 850,
"used_this_month": 150,
"expires_at": null
},
"api_key": {
"prefix": "sk_live_abc",
"created_at": "2025-01-15T10:30:00Z",
"last_used_at": "2025-01-31T15:45:00Z"
},
"created_at": "2025-01-01T00:00:00Z"
}
}

Response Fields

FieldTypeDescription
idstringYour unique user ID
emailstringYour email address
namestringYour display name
plan.namestringYour current plan name
plan.credits_includedintegerCredits included with plan
plan.featuresarrayList of available features
credits.balanceintegerCurrent credit balance
credits.used_this_monthintegerCredits used this billing cycle
credits.expires_atstring/nullCredit expiration date (null = never)
api_key.prefixstringFirst 11 characters of your API key
api_key.created_atstringWhen the API key was created
api_key.last_used_atstringLast API key usage timestamp

Credits

This endpoint does not consume credits.

Try It Out

GET/v1/user/profile

Get your profile information

Your API key is stored locally in your browser