Open source Java library to query the unofficial Danish VAT API service https://www.cvrapi.dk. You need to buy access and get an authorization token before you can use this library.
Go to file
mrok af74b269e4 Autoformat, constants, make the server instance variable 2019-09-29 23:33:22 +02:00
gradle Code coverage w. JaCoCo. 2019-08-23 08:18:13 +02:00
src Autoformat, constants, make the server instance variable 2019-09-29 23:33:22 +02:00
.editorconfig Update build pipeline. 2019-08-19 11:43:07 +02:00
.gitignore Initial work. 2019-08-17 19:53:11 +02:00
README.md Added more of the API JSON. 2019-08-19 20:58:01 +02:00
bitbucket-pipelines.yml Update build pipeline. 2019-08-19 11:43:07 +02:00
build.gradle More tests to improve code coverage. 2019-08-23 13:11:33 +02:00
gradle.properties Code coverage w. JaCoCo. 2019-08-23 08:18:13 +02:00
gradlew Initial work. 2019-08-17 19:53:11 +02:00
gradlew.bat Initial work. 2019-08-17 19:53:11 +02:00

README.md

libcvrapi


A Java library to query with the Danish VAT API service https://www.cvrapi.dk. Work in progress.

Usage

CvrApi api = new CvrApi("My user agent", "mySecretToken");
Company company = api.getCompanyByVatNumber("57020415");
System.out.println(company.life.name);

The Company represents most of the same properties as seen in the example JSON in the api documentation.

Gradle

repositories {
    maven { url 'https://dl.bintray.com/mnellemann/libs' }
}

dependencies {
    compile 'biz.nellemann.libs:libcvrapi:1.+'
    runtime "org.slf4j:slf4j-simple:1.7.28"
}

Development

To build and test the code:

./gradle build
./gradle test