# Maintain Twitter account IDs in a creator database

**Use case:** 

Collect account IDs, usernames, display names and profile URLs from Twitter to match known creators with your database records. Use identifiers for joins and manual identity checks across datasets you already hold. The task does not recover old usernames or merge account records automatically.

## Input

```json
{
  "inputList": [
    "NASA"
  ]
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "id": {
    "label": "ID",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "created_at": {
    "label": "Created At",
    "format": "string"
  },
  "created_timestamp": {
    "label": "Created Timestamp",
    "format": "integer"
  },
  "followers_count": {
    "label": "Followers Count",
    "format": "integer"
  },
  "following_count": {
    "label": "Following Count",
    "format": "integer"
  },
  "posts_count": {
    "label": "Posts Count",
    "format": "integer"
  },
  "media_posts_count": {
    "label": "Media Posts Count",
    "format": "integer"
  },
  "likes_given_count": {
    "label": "Likes Given Count",
    "format": "integer"
  },
  "highlights_count": {
    "label": "Highlights Count",
    "format": "integer"
  },
  "avatar_url": {
    "label": "Avatar URL",
    "format": "string"
  },
  "avatar_url_hd": {
    "label": "Avatar URL HD",
    "format": "string"
  },
  "banner_url": {
    "label": "Banner URL",
    "format": "string"
  },
  "website.url": {
    "label": "Website / URL",
    "format": "link"
  },
  "website.expanded_url": {
    "label": "Website / Expanded URL",
    "format": "link"
  },
  "bio_links.url": {
    "label": "Bio Links / URL",
    "format": "array"
  },
  "bio_links.expanded_url": {
    "label": "Bio Links / Expanded URL",
    "format": "array"
  },
  "bio_links.display_url": {
    "label": "Bio Links / Display URL",
    "format": "array"
  },
  "is_verified": {
    "label": "Is Verified",
    "format": "boolean"
  },
  "verified_type": {
    "label": "Verified Type",
    "format": "string"
  },
  "is_blue_verified": {
    "label": "Is Blue Verified",
    "format": "boolean"
  },
  "is_identity_verified": {
    "label": "Is Identity Verified",
    "format": "boolean"
  },
  "verification_description": {
    "label": "Verification Description",
    "format": "string"
  },
  "verified_since_at": {
    "label": "Verified Since At",
    "format": "string"
  },
  "is_protected": {
    "label": "Is Protected",
    "format": "boolean"
  },
  "possibly_sensitive": {
    "label": "Possibly Sensitive",
    "format": "boolean"
  },
  "professional_type": {
    "label": "Professional Type",
    "format": "string"
  },
  "affiliates_count": {
    "label": "Affiliates Count",
    "format": "integer"
  },
  "creator_subscriptions_count": {
    "label": "Creator Subscriptions Count",
    "format": "integer"
  },
  "can_highlight_posts": {
    "label": "Can Highlight Posts",
    "format": "boolean"
  },
  "can_receive_messages": {
    "label": "Can Receive Messages",
    "format": "boolean"
  },
  "can_be_media_tagged": {
    "label": "Can Be Media Tagged",
    "format": "boolean"
  },
  "description_language": {
    "label": "Description Language",
    "format": "string"
  },
  "profile_image_shape": {
    "label": "Profile Image Shape",
    "format": "string"
  },
  "pinned_post_ids": {
    "label": "Pinned Post Ids",
    "format": "array"
  },
  "birthdate.day": {
    "label": "Birthdate / Day",
    "format": "number"
  },
  "birthdate.month": {
    "label": "Birthdate / Month",
    "format": "number"
  },
  "birthdate.year": {
    "label": "Birthdate / Year",
    "format": "number"
  },
  "birthdate.visibility": {
    "label": "Birthdate / Visibility",
    "format": "text"
  },
  "birthdate.year_visibility": {
    "label": "Birthdate / Year Visibility",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitter Profile Scraper – X Bios, Counts & Links](https://apify.com/scrapingmonkey/twitter-profile-details-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapingmonkey/twitter-profile-details-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
