The LaunchPath API is currently in private beta. Please contact us to inquire about access.

API Reference

LaunchPath API

The LaunchPath API gives you access to business-critical information about your innovation program. Retrieve document lists, enriched individual documents, and innovation activity for use in your business intelligence tools.

Do you have a use case that is not supported by documented API endpoints? Please email us at engineering@launchpath.io to tell us about it! We will do our best to work with you on a solution, and usually can implement new functionality to suit your use case.

The LaunchPath API is available to Business and Enterprise customers. To inquire about access, please email us at support@launchpath.io.

Access

Your organization has a unique API URL, which will be formed like this: https://{orgPrefix}.launchpath.io/api/v1-beta/. All endpoints referenced in this documentation should be used with your unique base URL.

Example:

https://acmecorp.launchpath.io/api/v1-beta/ideas

Authentication

To authenticate, you will need an API token, which you can get in your company's settings panel at https://{orgPrefix}.launchpath.io/settings/integrations. (You will need admin access to view this page.)

Authenticate your API requests by adding "Authorization" headers using the standard "Bearer" pattern:

headers: {
  Authorization: "Bearer {token}";
}