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

# Showing a Webhook

> This endpoint shows a webhook

## Request URL

```http theme={null}
GET https://app.tatango.com/api/v2/lists/{ID}/webhooks/{WEBHOOK_ID}
```


## OpenAPI

````yaml GET /api/v2/lists/{ID}/webhooks/{WEBHOOK_ID}
openapi: 3.1.0
info:
  title: Tatango Legacy v2 API
  description: Tatango legacy v2 API endpoints for existing integrations.
  version: 2.0.0
servers:
  - url: https://app.tatango.com
security:
  - basicAuth: []
paths:
  /api/v2/lists/{ID}/webhooks/{WEBHOOK_ID}:
    get:
      tags:
        - Webhooks
      summary: Showing a Webhook
      description: This endpoint shows a webhook
      parameters:
        - name: ID
          in: path
          description: The ID of the list
          required: true
          schema:
            type: integer
        - name: WEBHOOK_ID
          in: path
          required: true
          schema:
            type: integer
          description: The ID of the webhook
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: OK
                  webhook:
                    type: object
                    properties:
                      callback_url:
                        type: string
                        example: http://localhost.dev/null?api_key=foo_bar_baz
                      created_at:
                        type: string
                        format: date-time
                        example: '2016-09-07T14:11:13-07:00'
                      enabled:
                        type: boolean
                        example: true
                      id:
                        type: integer
                        example: 5
                      list_id:
                        type: integer
                        example: 30
                      message_sent:
                        type: boolean
                        example: false
                      subscribe:
                        type: boolean
                        example: true
                      unsubscribe:
                        type: boolean
                        example: true
                      updated_at:
                        type: string
                        format: date-time
                        example: '2016-09-07T14:11:13-07:00'
              example:
                status: OK
                webhook:
                  callback_url: http://localhost.dev/null?api_key=foo_bar_baz
                  created_at: '2016-09-07T14:11:13-07:00'
                  enabled: true
                  id: 5
                  list_id: 30
                  message_sent: false
                  subscribe: true
                  unsubscribe: true
                  updated_at: '2016-09-07T14:11:13-07:00'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl "https://app.tatango.com/api/v2/lists/ID/webhooks/WEBHOOK_ID"
            -X GET \
              -H "Accept: application/json" \
              -H "Content-Type: application/json" \
              -u emailaddress@mydomain.com:my_api_key \
              -H "Host: example.org" \
              -H "Cookie: "
        - lang: Ruby
          label: Ruby
          source: >-
            require 'net/http'

            require 'uri'


            uri =
            URI.parse('https://app.tatango.com/api/v2/lists/ID/webhooks/WEBHOOK_ID')

            http = Net::HTTP.new(uri.host, uri.port)

            http.use_ssl = true

            request = Net::HTTP::Get.new(uri.request_uri)

            request.basic_auth("emailaddress@mydomain.com", "my_api_key")

            request['Accept'] = 'application/json'

            request['Content-Type'] = 'application/json'

            response = http.request(request)
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Tatango authenticates API requests by validating an API key passed via
        HTTP Basic Authentication. Use your login email as the username and your
        API key as the password.

````