> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api.alsona.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api.alsona.com/_mcp/server.

# Get seat

GET https://alsona.com/rest/accounts/{account_id}/seats/{seat_id}

Retrieve details of a specific seat.

Reference: https://api.alsona.com/api-reference/seats/get-seat

## Authentication

- `X-API-KEY` header (required)

## Request

### Path parameters

- `account_id` (string, required) — The ID of the account.
- `seat_id` (string, required) — The ID of the seat.

## Response

### 200

Successful response

- `success` (boolean, required)
- `seat` (object, required)
  - `seat_id` (string, required) — Unique identifier of the seat.
  - `account_id` (string, required) — ID of the account this seat belongs to.
  - `name` (string, required) — Display name of the seat, typically the LinkedIn email address.
  - `status` (string, required) — Current status of the seat. One of: `ENABLED`, `DISABLED`, `ERROR`.
  - `created_at` (integer, required) — Unix timestamp (ms) when the seat was created.
  - `auto_scale` (boolean, required) — Whether auto-scaling of daily limits is enabled.
  - `proxy` (object, required) — Proxy configuration used by this seat.
    - `country` (string, optional) — Two-letter country code of the proxy.
    - `city` (string, optional)
    - `host` (string, optional)
    - `port` (string, optional)
    - `username` (string, optional)
    - `password` (string, optional)
    - `type` (string, optional) — Proxy type. One of: `internal`, `custom`.
  - `ln_credentials` (object, required) — LinkedIn credentials status for this seat.
    - `email` (string, optional)
    - `password_provided` (boolean, optional)
    - `otp_provided` (boolean, optional)
  - `ln_is_connected` (boolean, required) — Whether the seat is currently connected to LinkedIn.
  - `updated_at` (integer, optional) — Unix timestamp (ms) when the seat was last updated.
  - `priority` (integer, optional) — Seat priority order within the account.
  - `error` (string, optional) — Error message if the seat is in an error state.
  - `email` (string, optional) — Email address associated with the seat for email outreach.
  - `email_status` (string, optional) — Status of the email sender. One of: `ENABLED`, `DISABLED`.
  - `ln_profile_id` (string, optional) — LinkedIn internal profile ID.
  - `ln_public_id` (string, optional) — LinkedIn public profile slug.
  - `ln_first_name` (string, optional)
  - `ln_last_name` (string, optional)
  - `ln_headline` (string, optional) — LinkedIn profile headline.
  - `ln_lang` (string, optional) — Language of the LinkedIn profile.
  - `ln_premium` (boolean, optional) — Whether the LinkedIn account has a Premium subscription.
  - `ln_has_SN` (boolean, optional) — Whether the LinkedIn account has Sales Navigator.
  - `ln_memorialized` (boolean, optional) — Whether the LinkedIn profile has been memorialized.
  - `ln_ai_active` (boolean, optional) — Whether AI-assisted messaging is active for this seat.
  - `ln_connections_count` (integer, optional) — Number of LinkedIn connections.
  - `ln_last_login` (integer, optional) — Unix timestamp (ms) of the last LinkedIn login.
  - `ln_last_active` (integer, optional) — Unix timestamp (ms) of the last LinkedIn activity.
  - `ln_limits` (object, optional) — Configured daily action limits.
    - `ln_profile_message_day` (integer, optional)
    - `ln_profile_invite_day` (integer, optional)
    - `ln_profile_withdraw_count` (integer, optional)
    - `ln_profile_withdraw_days` (integer, optional)
    - `ln_page_invite_day` (integer, optional)
    - `ln_profile_follow_day` (integer, optional)
    - `ln_profile_like_post_day` (integer, optional)
    - `ln_profile_view_day` (integer, optional)
    - `ln_profile_inmail_day` (integer, optional)
    - `ln_profile_comment_post_day` (integer, optional)
    - `ln_enrich_day` (integer, optional)
    - `email_send_day` (integer, optional)
  - `ln_auto_scale_limits` (object, optional) — Auto-scaled daily action limits (computed when `auto_scale` is enabled).
    - `ln_profile_message_day` (integer, optional)
    - `ln_profile_invite_day` (integer, optional)
    - `ln_profile_withdraw_count` (integer, optional)
    - `ln_profile_withdraw_days` (integer, optional)
    - `ln_page_invite_day` (integer, optional)
    - `ln_profile_follow_day` (integer, optional)
    - `ln_profile_like_post_day` (integer, optional)
    - `ln_profile_view_day` (integer, optional)
    - `ln_profile_inmail_day` (integer, optional)
    - `ln_profile_comment_post_day` (integer, optional)
    - `ln_enrich_day` (integer, optional)
    - `email_send_day` (integer, optional)
  - `sn_status` (object, optional) — Sales Navigator status. Present only when `ln_has_SN` is `true`.
    - `inmail_credits` (integer, optional) — Remaining InMail credits.
    - `checked_at` (integer, optional) — Unix timestamp (ms) when the status was last checked.
  - `urn_sn` (string, optional) — Sales Navigator URN for this profile.
  - `inbox_ln_last_sync` (integer, optional) — Unix timestamp (ms) of the last LinkedIn inbox sync.
  - `inbox_email_last_sync` (integer, optional) — Unix timestamp (ms) of the last email inbox sync.
  - `connections_ln_last_sync` (integer, optional) — Unix timestamp (ms) of the last LinkedIn connections sync.

## Examples

**Response**

```json
{
  "success": true,
  "seat": {
    "seat_id": "SEATXXXXXXXXXXXXXXXXXXXX",
    "account_id": "ACCOXXXXXXXXXXXXXXXXXXXX",
    "name": "john.doe@example.com",
    "status": "ENABLED",
    "created_at": 1771850975585,
    "auto_scale": false,
    "proxy": {
      "country": "",
      "city": "",
      "host": "",
      "port": "",
      "username": "",
      "password": "",
      "type": ""
    },
    "ln_credentials": {
      "email": "john.doe@example.com",
      "password_provided": true,
      "otp_provided": true
    },
    "ln_is_connected": true,
    "updated_at": 1775136544603,
    "priority": 1,
    "email": "john.doe@example.com",
    "email_status": "ENABLED",
    "ln_profile_id": "ACoAACDW1qUB5e8al8IQgSIJWYk9u_7bCjD-JT0",
    "ln_public_id": "john-doe",
    "ln_first_name": "John",
    "ln_last_name": "Doe",
    "ln_headline": "CEO",
    "ln_lang": "en",
    "ln_premium": true,
    "ln_has_SN": true,
    "ln_memorialized": false,
    "ln_ai_active": false,
    "ln_connections_count": 2722,
    "ln_last_login": 1773839083896,
    "ln_last_active": 1775125194373,
    "ln_limits": {
      "ln_profile_message_day": 5,
      "ln_profile_invite_day": 4,
      "ln_profile_withdraw_count": 200,
      "ln_profile_withdraw_days": 26,
      "ln_page_invite_day": 4,
      "ln_profile_follow_day": 8,
      "ln_profile_like_post_day": 8,
      "ln_profile_view_day": 29,
      "ln_profile_inmail_day": 4,
      "ln_profile_comment_post_day": 6,
      "ln_enrich_day": 181,
      "email_send_day": 28
    },
    "ln_auto_scale_limits": {
      "ln_profile_message_day": 9,
      "ln_profile_invite_day": 7,
      "ln_profile_withdraw_count": 200,
      "ln_profile_withdraw_days": 26,
      "ln_page_invite_day": 7,
      "ln_profile_follow_day": 14,
      "ln_profile_like_post_day": 13,
      "ln_profile_view_day": 48,
      "ln_profile_inmail_day": 6,
      "ln_profile_comment_post_day": 10,
      "ln_enrich_day": 181,
      "email_send_day": 28
    },
    "sn_status": {
      "inmail_credits": 150,
      "checked_at": 1771851793531
    },
    "urn_sn": "ACwAACDW1qUBMVRXZv2C_p4AW7LqaisHZaC5ou8",
    "inbox_ln_last_sync": 1775136491056,
    "inbox_email_last_sync": 1775136504688,
    "connections_ln_last_sync": 1775136544603
  }
}
```

**SDK Code**

```python Response
import requests

url = "https://alsona.com/rest/accounts/account_id/seats/seat_id"

headers = {"X-API-KEY": "<apiKey>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Response
const url = 'https://alsona.com/rest/accounts/account_id/seats/seat_id';
const options = {method: 'GET', headers: {'X-API-KEY': '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Response
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://alsona.com/rest/accounts/account_id/seats/seat_id"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-API-KEY", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Response
require 'uri'
require 'net/http'

url = URI("https://alsona.com/rest/accounts/account_id/seats/seat_id")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java Response
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://alsona.com/rest/accounts/account_id/seats/seat_id")
  .header("X-API-KEY", "<apiKey>")
  .asString();
```

```php Response
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://alsona.com/rest/accounts/account_id/seats/seat_id', [
  'headers' => [
    'X-API-KEY' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Response
using RestSharp;

var client = new RestClient("https://alsona.com/rest/accounts/account_id/seats/seat_id");
var request = new RestRequest(Method.GET);
request.AddHeader("X-API-KEY", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift Response
import Foundation

let headers = ["X-API-KEY": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://alsona.com/rest/accounts/account_id/seats/seat_id")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```