Export Subscribers

There are currently two methods you can use to export subscribers.


Export via API

Step 1: Obtain the API key from the management UI (My Account -> API Tokens) and your page ID (this can be found in the URL of your page in the management UI)

Step 2: Visit the API Docs site and follow this reference.


Step 3: Open a terminal or command line app (e.g. on Mac -> Terminal). Replace YOUR_PAGE_ID and YOUR_API_TOKEN below with your details, then run the command to save the first page of subscribers as JSON.

curl -X GET 'https://api.sorryapp.com/v1/pages/YOUR_PAGE_ID/subscribers?page=1&per_page=500' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -o subscribers-page-1.json

The API is paginated and returns 500 subscribers per page by default. If your status page has more subscribers, repeat the request with page=2, page=3, and so on. Save each page to a different filename, such as subscribers-page-2.json, so you do not overwrite the previous page. See the subscriber API reference for the pagination parameters.


Request an export via support

You can request an export by getting in touch with us by clicking on the message widget bottom right of this page.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us