API Builder provides a complete REST API to all of the data - and everything you see in the user interface is displayed by interacting directly with the API. By default, all public information is available via the API:
curl https://api.apibuilder.io/organizations [ { "guid": "480d042d-2bf9-47f3-a743-204a05eaa319", "key": "apicollective", "name": "API Collective", "namespace": "io", "visibility": "public", "domains": [], "audit": { "created_at": "2017-06-24T14:25:01.918Z", "created_by": { "guid": "b0c45ffe-8ab2-4bbd-8742-8d16adbd1dc4" }, "updated_at": "2017-06-24T14:58:07.459Z", "updated_by": { "guid": "b0c45ffe-8ab2-4bbd-8742-8d16adbd1dc4" } } }, ... ]
Authentication is via API tokens and is needed if you have any data in API Builder that is not public.
Once you have your API token, verify that it is valid:
curl -u API_TOKEN: https://api.apibuilder.io/<your organization id>You should now see your private applications in the response.
Full documentation of the API Builder API is available online at https://app.apibuilder.io/apicollective/apibuilder-api