# Get single pop-up

You can return details about your pop-up.

To access a single pop-up you need a 36 character form key, that can be found when listing all pop-ups.

GET /form/:form-key/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/form/:form-key"

# Response

{
    "key": "a2c9111a-bbbb-cccc-1234-abcde1231234",
    "statistics": {
        "id": 2,
        "shown_counter": 200,
        "submit_counter": 50,
        "ctr": "25.00",
        "form": "aaaaaaaa-bbbb-cccc-1234-abcdef98754"
    },
    "name": "Pop-up 1",
    "description": "Description of the second pop-up",
    "created_at": "2020-03-03T16:00:00.000000Z",
    "updated_at": "2020-03-03T16:00:00.000000Z",
    "content": "Content of the pop-up",
    "preview": null,
    "predefined_template_json": null,
    "preview_file": null,
    "author": 13
}