List active projects
Last updated
Was this helpful?
Last updated
Was this helpful?
Retrieve list of active projects. If authenticating using JWT token this lists all the projects the user has access to, if authenticating using an API key, this only lists that project.
/api/projects
curl -L \
--url 'https://studio.edgeimpulse.com/v1/api/projects' \
--header 'x-api-key: YOUR_API_KEY'
{
"success": true,
"error": "text",
"projects": [
{
"id": 1,
"name": "Water hammer detection",
"description": "text",
"created": "2019-07-21T17:32:28Z",
"owner": "text",
"lastAccessed": "2019-07-21T17:32:28Z",
"lastModified": "2019-07-21T17:32:28Z",
"lastModificationDetails": "Data sample added",
"logo": "text",
"ownerUserId": 1,
"ownerOrganizationId": 1,
"ownerAvatar": "text",
"ownerIsDeveloperProfile": true,
"developerProfileUserId": 1,
"metadata": {},
"dataExplorerScreenshot": "text",
"isEnterpriseProject": true,
"whitelabelId": 1,
"whitelabelName": "text",
"category": "Image classification",
"license": "text",
"tier": "free",
"hasPublicVersion": true,
"isPublic": true,
"allowsLivePublicAccess": true,
"indPauseProcessingSamples": true,
"publicProjectListed": true,
"deletedDate": "2025-02-22T04:46:49.130Z",
"fullDeletionDate": "2025-02-22T04:46:49.130Z",
"scheduledFullDeletionDate": "2025-02-22T04:46:49.130Z",
"labelingMethod": "single_label",
"collaborators": [
{
"id": 1,
"username": "janjongboom",
"name": "Jan Jongboom",
"email": "quijote@edgeimpulse.com",
"photo": "https://usercdn.edgeimpulse.com/photos/1.jpg",
"created": "2019-08-31T17:32:28Z",
"lastSeen": "2019-08-31T17:32:28Z",
"staffInfo": {
"isStaff": true,
"hasSudoRights": true,
"companyName": "text"
},
"pending": true,
"lastTosAcceptanceDate": "2019-08-31T17:32:28Z",
"jobTitle": "Software Engineer",
"companyName": "Edge Impulse Inc.",
"activated": true,
"mfaConfigured": true,
"stripeCustomerId": "text",
"hasPendingPayments": true,
"tier": "free",
"permissions": [
"admin:infra:disallowedEmailDomains:write"
],
"isOwner": true
}
],
"tags": [
"FOMO",
"beers"
]
}
]
}
OK