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

# Get credit pricing

> Retrieve credit costs for all available actions.

    > **Required scope:** `WORKSPACE_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/credits/pricing
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/credits/pricing:
    get:
      tags:
        - Credits
      summary: Get credit pricing
      description: |-
        Retrieve credit costs for all available actions.

            > **Required scope:** `WORKSPACE_READ`
            >
            > **Rate limit:** 100 requests per minute
      responses:
        '200':
          description: Pricing information retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      actions:
                        type: array
                        items:
                          type: object
                          properties:
                            action:
                              type: string
                              description: Action identifier
                            name:
                              type: string
                              description: Action name
                            cost:
                              type: number
                              description: Credit cost for this action
                            description:
                              type:
                                - string
                                - 'null'
                              description: Description of the action
                          required:
                            - action
                            - name
                            - cost
                            - description
                        description: List of all available actions with their credit costs
                      imports:
                        type: array
                        items:
                          type: object
                          properties:
                            import:
                              type: string
                              description: Import option identifier
                            name:
                              type: string
                              description: Import option name
                            cost:
                              type: number
                              description: Credit cost per imported result
                            description:
                              type:
                                - string
                                - 'null'
                              description: Description of the import option
                          required:
                            - import
                            - name
                            - cost
                            - description
                        description: >-
                          List of all available imports with their per-result
                          credit costs
                    required:
                      - actions
                      - imports
                required:
                  - status
                  - message
                  - data
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````