---
title: "User Profile Info"
method: GET
path: "/info"
tags: ["Users Data"]
---

# User Profile Info

`GET /info`

Returns basic public profile data for a Twitter/X account using its handle (username), ID or link. This endpoint is used to read the display name, bio, follower and following counts, total posts, profile images, account creation date, and simple status flags such as verification and DM availability.

Use cases:

SaaS products that show user cards with name, bio, and follower count; analytics tools that need quick account stats before deeper processing; marketing platforms checking audience size and verification status before outreach; CRM systems enriching stored handles with profile data; bot or fraud detection services validating basic account signals.

## Query parameters

- `user_link` string
- `username` string
- `user_id` string

## Response `200`

OK

- CommonUser
  - `bio_urls` string[]
  - `can_dm` boolean
  - `created_at` string
  - `description` string
  - `display_name` string
  - `favourites_count` integer
  - `followers_count` integer
  - `followings_count` integer
  - `id` string
  - `location` string
  - `media_count` integer
  - `pinned_tweet_ids` string[]
  - `possibly_sensitive` boolean
  - `profile_background_image_url` string
  - `profile_image_url` string
  - `protected` boolean
  - `tweets_count` integer
  - `username` string
  - `verified` boolean

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/sorsa/apis/api-sorsa-io-2.md) · [All operations](https://skmtc.net/sorsa/apis/api-sorsa-io-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sorsa/api-sorsa-io-2/revisions/3d7215317ba1/schema)
