Back to articles list
- 1 minutes read

Tip #19 – How to automatically download SQL script from Vertabelo

If you need to automatically download SQL script from Vertabelo, for example, for the purposes of your build system, you definitely should check out our Vertabelo API. It allows you to download an SQL or XML of your model by a simple HTTP request. In the command line, it may look like this:

VERTABELO_API_TOKEN=put-your-api-token-here
MODEL_ID=put-your-model-identifier-here

curl -u $VERTABELO_API_TOKEN:  \
        https://my.vertabelo.com/api/sql/$MODEL_ID  > create-database.sql

To learn more about Vertabelo API, go here.

 
 
go to top

Our website uses cookies. By using this website, you agree to their use in accordance with the browser settings. You can modify your browser settings on your own. For more information see our Privacy Policy.