> ## Documentation Index
> Fetch the complete documentation index at: https://developers.senderz.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Sender ID status

> Retrieve the current status and details of a Sender ID registration.

**Required permission:** `sids:read`

## Path parameters

<ParamField path="sid_id" type="string" required>
  The SID ID (e.g. `sid_j1k2l3m4`).
</ParamField>

## Example

```bash theme={null}
curl https://api.senderz.ai/v1/sids/sid_j1k2l3m4 \
  -H "Authorization: Bearer sz_live_xxxxxxxxxxxxx"
```

## Response

<ResponseExample>
  ```json 200 theme={null}
  {
    "ok": true,
    "data": {
      "id": "sid_j1k2l3m4",
      "sender_id": "TrackFast",
      "brand_id": "brand_f6g7h8i9",
      "market": "AU",
      "status": "registered",
      "match_type": "business_name",
      "match_value": "TrackFast Logistics Pty Ltd",
      "use_case": "Dispatch and delivery notifications for e-commerce orders.",
      "created_at": "2026-07-17T14:30:00+10:00",
      "registered_at": "2026-07-18T09:15:00+10:00"
    },
    "meta": {
      "request_id": "req_bcd890",
      "timestamp": "2026-07-18T10:00:00+10:00"
    }
  }
  ```
</ResponseExample>
