---
title: "Get event suscriptions"
url: "https://docs.signnow.com/docs/webhooks-1/operations/get__api_v2_events"
type: "endpoint"
section: "webhooks-1"
slug: "webhooks-1/operations/get__api_v2_events"
method: "GET"
path: "/api/v2/events"
operation_id: "get__api_v2_events"
authorization: "basic"
---

# Get event suscriptions

`GET /api/v2/events`

Gets information about all subscriptions to events made with a specific application

## Authorization

basic

## Responses

### 200

**Example** (`application/json`)

```json
{
  "data": [
    {
      "id": "391a4c4a267b48c2a8e90ff802d4ae40fa051af6",
      "event": "user.document.create",
      "action": "callback",
      "created": 1575381580,
      "entity_id": 18972165,
      "json_attributes": {
        "headers": {
          "int_head": 12,
          "bool_head": false,
          "float_head": 12.24,
          "string_head": "test"
        },
        "use_tls_12": true,
        "callback_url": "http://callback-url.com",
        "integration_id": "b98fc00add6b43a606bc527c81eee741bf16a7d8",
        "docid_queryparam": true
      }
    }
  ],
  "meta": {
    "pagination": {
      "count": 1,
      "links": [],
      "total": 1,
      "per_page": 15,
      "total_pages": 1,
      "current_page": 1
    }
  }
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X GET \
  "https://api.signnow.com/api/v2/events" \
  -H "Authorization: Basic $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/webhooks-1/operations/get__api_v2_events*
