> ## Documentation Index
> Fetch the complete documentation index at: https://developers.manglai.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a specific consumption record

> Fetch details of a consumption record by its unique identifier.



## OpenAPI

````yaml /openapi.json get /api/v1/consumptions/{id}
openapi: 3.0.3
info:
  title: Manglai Public API
  description: Manglai API for Carbon Footprint Management
  contact:
    email: admin@manglai.io
    name: Manglai Support
    url: https://manglai.io
  termsOfService: https://manglai.io/privacy
  version: '1.0'
servers:
  - url: https://www.manglai.io
    description: Production
security:
  - apiTokenAuth: []
tags: []
paths:
  /api/v1/consumptions/{id}:
    get:
      tags:
        - consumptions
      summary: Retrieve a specific consumption record
      description: Fetch details of a consumption record by its unique identifier.
      parameters:
        - name: id
          in: path
          description: The unique identifier of the consumption record.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved the consumption record.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: The unique identifier of the consumption.
                  data:
                    type: object
                    description: The detailed information about the consumption.
        '404':
          description: Consumption record not found.
components:
  securitySchemes:
    apiTokenAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````