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

# Get a signal

> Retrieve a single signal by ID, including its configuration and current status.

Retrieves a single signal by ID.

## Request

```http theme={null}
GET /v1/signals/{id}
```

### Path parameters

<ParamField path="id" type="string" required>
  The unique identifier of the signal.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique signal identifier.
</ResponseField>

<ResponseField name="type" type="string">
  Signal type.
</ResponseField>

<ResponseField name="status" type="string">
  Current status.
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp.
</ResponseField>

## Example

```bash cURL theme={null}
curl https://api.1eye.com/v1/signals/sig_123 \
  -H "Authorization: Bearer YOUR_API_KEY"
```
