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

# Get pricing location

> Get detailed information for a specific pricing location.



## OpenAPI

````yaml GET /v1/pricing_locations/{gs_entity_id}
openapi: 3.1.0
info:
  title: GridCertainty Public API
  description: >-
    Read-only public API for ERCOT datasets, pricing locations, reports, and
    system metadata.
  version: 1.0.0
servers:
  - url: https://api.felixfusion.ai
    description: Production public API
  - url: http://localhost:8001
    description: Local public API
security:
  - ApiKeyHeader: []
  - ApiKeyQuery: []
paths:
  /v1/pricing_locations/{gs_entity_id}:
    get:
      tags:
        - Pricing Locations
      summary: Get pricing location
      description: Get detailed information for a specific pricing location.
      operationId: get_pricing_location
      parameters:
        - $ref: '#/components/parameters/gs_entity_id_path'
        - $ref: '#/components/parameters/isos'
      responses:
        '200':
          description: Pricing location details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingLocation'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    gs_entity_id_path:
      name: gs_entity_id
      in: path
      required: true
      schema:
        type: string
      description: Pricing location identifier.
    isos:
      name: isos
      in: query
      schema:
        type: string
        default: ercot
      description: Comma-separated ISO codes. The first value is used as the market code.
  schemas:
    PricingLocation:
      type: object
      properties:
        gs_entity_id:
          type: string
        location:
          type: string
        location_type:
          type:
            - string
            - 'null'
        market_id:
          type:
            - string
            - 'null'
        baa:
          type:
            - string
            - 'null'
        zone:
          type:
            - string
            - 'null'
        zone_type:
          type:
            - string
            - 'null'
        latitude:
          type:
            - number
            - 'null'
        longitude:
          type:
            - number
            - 'null'
        pricing_datasets:
          type: array
          items:
            type: string
        earliest_seen_utc:
          type:
            - string
            - 'null'
        latest_seen_utc:
          type:
            - string
            - 'null'
        status_threshold_days:
          type:
            - number
            - 'null'
        status:
          type:
            - string
            - 'null'
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        detail:
          oneOf:
            - type: string
            - type: object
              additionalProperties: true
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: Dataset not found
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````