# Look Up X Account Origin by Numeric User ID

**Use case:** 

Enter one or more numeric X / Twitter user IDs to resolve current usernames and extract account origin, signup source, username-change history, and public profile details.

## Input

```json
{
  "screenNames": [
    "https://x.com/apify"
  ],
  "userIds": [
    "3510729917"
  ]
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "profile_image_url": {
    "label": "Profile image",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "screen_name": {
    "label": "Username",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  },
  "user_id": {
    "label": "User ID",
    "format": "string"
  },
  "requested_screen_name": {
    "label": "Requested username",
    "format": "string"
  },
  "requested_user_id": {
    "label": "Requested user ID",
    "format": "string"
  },
  "account_based_in": {
    "label": "Account based in",
    "format": "string"
  },
  "account_source": {
    "label": "Account source",
    "format": "string"
  },
  "username_changes_count": {
    "label": "Username changes",
    "format": "integer"
  },
  "username_last_changed_at": {
    "label": "Last username change",
    "format": "string"
  },
  "account_created_at": {
    "label": "Account created",
    "format": "string"
  },
  "followers_count": {
    "label": "Followers",
    "format": "integer"
  },
  "following_count": {
    "label": "Following",
    "format": "integer"
  },
  "blue_verified": {
    "label": "Blue verified",
    "format": "boolean"
  },
  "protected": {
    "label": "Protected",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [X / Twitter Account Origin Intelligence](https://apify.com/arjun_code/x-twitter-account-origin-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/arjun_code/x-twitter-account-origin-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/arjun_code/x-twitter-account-origin-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
