Skip to main content
GET
/
v1
/
projects
/
{projectId}
Get Project Details
curl --request GET \
  --url https://api.migma.ai/v1/projects/{projectId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "status": "pending",
    "companyDetails": {},
    "logoUrls": {
      "primary": "<string>",
      "secondary": "<string>",
      "favicon": "<string>"
    },
    "imageUrls": [
      {}
    ],
    "typography": {},
    "colors": {},
    "screenshotUrl": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use 'Authorization: Bearer ' where the JWT token is obtained from the login endpoint.

Path Parameters

projectId
string
required

Project ID (MongoDB ObjectId)

Response

Project response

success
boolean
required
data
object
error
string | null