Welcome to DragApp API documentation 👋

Through our API, you have the power to seamlessly create robust applications and integrations. Our documentation can help you connect and interact with your Boards, Columns, Cards, Tags and Email Sequences.

Explore our API presentation to discover the myriad possibilities of what DragApp can do for you.

How to get Started

To connect with DragApp Api you need to get a API key, which can be found in settings of your DragApp account, if you do not have a DragApp account, sign up here.

Authentication

The DragApp API uses API_KEY to authenticate its users.
You need to send the API_KEY for each request in your API header.

Example
                                
curl --request GET \
--url https://app.dragapp.com/v2/board
--header 'Authorization: [API_KEY]'
                        
                            

Responses

DragApp uses conventional HTTP response codes to indicate the success or failure of API request. In general: Codes in the 200 range indicate success. Code in the 400 range indicates an error.

Type of responses

Success
                                    
{
    "message": "Success message",
    "error": false,
    "code": 200,
    "data": { ... }
}
                                
                                
Error
                                    
{
    "message": "Error message",
    "code": 400,
    "error": true

}