Get private user data
GEThttps://api.apify.com/v2/users/me
Returns information about the current user account, including both public and private information.
The user account is identified by the provided authentication token.
The fields plan
, email
and profile
are omitted when this endpoint is accessed from Actor run.
Responses​
- 200
Response Headers
- application/json
- Schema
- Example (auto)
Schema
data objectrequired
{
"data": {
"id": "YiKoxjkaS9gjGTqhF",
"username": "myusername",
"profile": {
"bio": "I started web scraping in 1985 using Altair BASIC.",
"name": "Jane Doe",
"pictureUrl": "/img/anonymous_user_picture.png",
"githubUsername": "torvalds.",
"websiteUrl": "http://www.example.com",
"twitterUsername": "@BillGates"
},
"email": "bob@example.com",
"proxy": {
"password": "ad78knd9Jkjd86",
"groups": [
null
]
},
"plan": {
"id": "Personal",
"description": "Cost-effective plan for freelancers, developers and students.",
"isEnabled": true,
"monthlyBasePriceUsd": 49,
"monthlyUsageCreditsUsd": 49,
"usageDiscountPercent": 0,
"enabledPlatformFeatures": [
[
"ACTORS"
],
[
"STORAGE"
],
[
"PROXY_SERPS"
],
[
"SCHEDULER"
],
[
"WEBHOOKS"
]
],
"maxMonthlyUsageUsd": 9999,
"maxActorMemoryGbytes": 32,
"maxMonthlyActorComputeUnits": 1000,
"maxMonthlyResidentialProxyGbytes": 10,
"maxMonthlyProxySerps": 30000,
"maxMonthlyExternalDataTransferGbytes": 1000,
"maxActorCount": 100,
"maxActorTaskCount": 1000,
"dataRetentionDays": 14,
"availableProxyGroups": {
"SOMEGROUP": 20,
"ANOTHERGROUP": 200
},
"teamAccountSeatCount": 1,
"supportLevel": "COMMUNITY",
"availableAddOns": []
},
"effectivePlatformFeatures": {
"ACTORS": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"STORAGE": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"SCHEDULER": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"PROXY": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"PROXY_EXTERNAL_ACCESS": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"PROXY_RESIDENTIAL": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"PROXY_SERPS": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"WEBHOOKS": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"ACTORS_PUBLIC_ALL": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
},
"ACTORS_PUBLIC_DEVELOPER": {
"isEnabled": true,
"disabledReason": "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com",
"disabledReasonType": "DISABLED",
"isTrial": false,
"trialExpirationAt": "2025-01-01T14:00:00.000Z"
}
},
"createdAt": "2022-11-29T14:48:29.381Z",
"isPaying": true
}
}
Authorization: http
name: httpBearertype: httpscheme: bearerdescription: API authentication token.
- CLI
- JavaScript
- Python
- PHP
- Java
- C
- C#
- Go
- Rust
- Node.js
- Ruby
- PowerShell
- Dart
- Objective-C
- OCaml
- R
- Swift
- Kotlin
- Apify CLI
apify info
- CURL
curl -L 'https://api.apify.com/v2/users/me' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'
ResponseClear