Aura Logo
AuraAPI Docs
OpenapiV1ProductsId

Get product by ID

Retrieve detailed information about a specific product.

Response includes:

  • Product name and description
  • Active status
  • Timestamps
GET
/v1/products/{id}

Path Parameters

idstring

Product ID (UUID)

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/products/550e8400-e29b-41d4-a716-446655440000"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "organization_id": "string",
    "name": "Premium Coaching Program",
    "slug": "premium-coaching",
    "description": "string",
    "is_active": true,
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z"
  }
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}