Awesome
JCorkboard is a lightweight Java-based JSON Importer for Corkboard-based projects!
When you run your Corkboard-made JSON file through its importer, it'll convert the project into usable objects for your program. Alternatively, if you're using a different language, it should be rather easy to convert our CorkboardJSONImporter class into any other language.
Try out our test program, JCorkboardHelloWorldExample, and select the hello-world.json file for a demonstration of this library. Loading a Corkboard project is as easy as this:
CorkboardProject project = CorkboardJSONImporter.read(f);
From that project object, you'll have access to all nodes and connections in the project, along with handle tools that will let you navigate them in your own software.
Happy programming!