Skip to content

Get All Applications

Retrieve a list of all applications in your Docstron account using the API. This endpoint allows you to fetch all your applications with their details and status.

GET https://api.docstron.com/v1/applications

This endpoint requires authentication using a Bearer token. Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Query Parameters

This endpoint does not require any query parameters. It returns all applications associated with your account.

Terminal window
curl --location 'https://api.docstron.com/v1/applications' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data ''

200 - Success Response

{
"success": true,
"message": "Request successful",
"data": [
{
"app_id": "app-7b4d78fb-820c-4ca9-84cc-46953f211234",
"name": "App 1",
"description": "App 1 description",
"is_active": true,
"created_at": "2025-10-12T17:06:14",
"updated_at": "2025-10-13T16:20:39"
}
]
}
FieldTypeDescription
successbooleanIndicates if the request was successful
messagestringA message describing the response
dataarrayArray of application objects
data[].app_idstringUnique application identifier
data[].namestringName of the application
data[].descriptionstringDescription of the application (may be empty)
data[].is_activebooleanWhether the application is active (true) or inactive (false)
data[].created_atstringTimestamp when the application was created
data[].updated_atstringTimestamp when the application was last updated

500 - Internal Server Error

Returned when an unexpected server error occurs while retrieving applications.

{
"success": false,
"message": "Failed to get all the applications.",
"data": []
}

Common causes:

  • Temporary server issue
  • Database connectivity problem
  • Service maintenance

Solution: Wait a few moments and retry the request. If the problem persists, contact support@docstron.com.

If you have questions about applications or need assistance:

  • 📧 Email: support@docstron.com
  • 💬 Live Chat: Available in your dashboard
  • 📚 Documentation: You’re reading it!