Python
import requests url = "https://api.memic.ai/api/v1/projects" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
[ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "created_by_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "is_active": true, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ]
Returns all projects in your organization.
Memic API key. Every key is bound to exactly one environment — get one from the Memic dashboard under API Keys.
Successful Response