Skip to main content
GET
/
api
/
v1
/
products
/
{product_id}
Obtener producto por ID
curl --request GET \
  --url https://api.lapyme.com.ar/api/v1/products/{product_id} \
  --header 'Authorization: Bearer <token>'
{
  "request_id": "<string>",
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "category": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "sku": "<string>",
    "barcode": "<string>",
    "oem_code": "<string>",
    "currency": "<string>",
    "cost": 123,
    "price": 123,
    "tax_rate": {
      "id": 123,
      "value": 123
    },
    "stock_minimum": 123,
    "default_supplier": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "product_type": "product",
    "is_active": true,
    "organization_slug": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "object": "product",
    "variant_group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "variant_options": {},
    "is_exempt": true,
    "stock_summary": {
      "total_quantity": 123,
      "warehouse_count": 4503599627370495,
      "by_warehouse": [
        {
          "warehouse_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "warehouse_name": "<string>",
          "quantity": 123,
          "on_hand": 123,
          "reserved_quantity": 123,
          "incoming_quantity": 123
        }
      ]
    },
    "effective_price": 123,
    "price_source": "automatic",
    "applied_price_list": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "is_automatic": true,
      "automatic_pricing_mode": "base_price_adjustment",
      "adjustment_percentage": 123,
      "tax_inclusive": true
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lapyme.com.ar/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Incluí tu API key en el header Authorization con el prefijo Bearer.

Path Parameters

product_id
string<uuid>
required

ID del producto

Response

Producto obtenido exitosamente

request_id
string
required
data
object
required