Developers

API Usage Examples

Authenticate with the IC Project API and build practical Python integrations.

Authentication

The IC Project API requires an authorization token. You can manage authorization tokens from the API tab in your IC Project instance settings.

Send your token in the X-Auth-Token header with every API request:

GET /api/instance/INSTANCE_SLUG/project/projects HTTP/1.1
Host: app.icproject.com
User-Agent: My Custom Script
Accept: application/json
X-Auth-Token: YOUR_AUTHORIZATION_TOKEN

Keep authorization tokens private. Do not commit real tokens to source control or embed them in client-side applications.

Python examples

The following guides demonstrate common import, export, and integration workflows.

On this page