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

# Detalhe de item do catálogo

> Retorna todos os campos de um item incluindo source_data original.



## OpenAPI

````yaml https://raw.githubusercontent.com/prefeitura-rio/app-catalogo/refs/heads/main/docs/openapi-v3.json get /api/v1/catalog/{id}
openapi: 3.0.0
info:
  description: >-
    Discovery layer unificada da Prefeitura do Rio de Janeiro. Indexa serviços
    públicos, cursos, vagas e oportunidades MEI com busca full-text e
    recomendação personalizada por perfil de cidadão.
  title: app-catalogo
  contact:
    name: Prefeitura do Rio de Janeiro
    url: https://github.com/prefeitura-rio/app-catalogo
  version: '1.0'
servers:
  - url: https://services.staging.app.dados.rio/catalogo
    description: Staging
  - url: https://services.pref.rio/catalogo
    description: Produção
security: []
paths:
  /api/v1/catalog/{id}:
    get:
      tags:
        - catálogo
      summary: Detalhe de item do catálogo
      description: Retorna todos os campos de um item incluindo source_data original.
      parameters:
        - description: UUID v4 do item
          name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.CatalogItem'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
components:
  schemas:
    models.CatalogItem:
      type: object
      properties:
        bairros:
          type: array
          items:
            type: string
        created_at:
          type: string
        description:
          type: string
        external_id:
          type: string
        id:
          type: string
        image_url:
          type: string
        modalidade:
          type: string
        organization:
          type: string
        short_desc:
          type: string
        source:
          $ref: '#/components/schemas/models.ItemSource'
        source_data:
          type: object
        source_updated_at:
          type: string
        status:
          $ref: '#/components/schemas/models.ItemStatus'
        tags:
          type: array
          items:
            type: string
        target_audience:
          type: object
        title:
          type: string
        type:
          $ref: '#/components/schemas/models.ItemType'
        updated_at:
          type: string
        url:
          type: string
        valid_from:
          type: string
        valid_until:
          type: string
    models.ItemSource:
      type: string
      enum:
        - salesforce
        - courses
        - jobs
        - mei
        - app-go-api
        - typesense
      x-enum-comments:
        SourceAppGoAPI: 'fonte composta: courses + jobs + mei'
        SourceTypesense: 'temporário: Carta de Serviços até migração para SalesForce'
      x-enum-descriptions:
        - ''
        - ''
        - ''
        - ''
        - 'fonte composta: courses + jobs + mei'
        - 'temporário: Carta de Serviços até migração para SalesForce'
      x-enum-varnames:
        - SourceSalesForce
        - SourceCourses
        - SourceJobs
        - SourceMEI
        - SourceAppGoAPI
        - SourceTypesense
    models.ItemStatus:
      type: string
      enum:
        - active
        - inactive
        - draft
      x-enum-varnames:
        - StatusActive
        - StatusInactive
        - StatusDraft
    models.ItemType:
      type: string
      enum:
        - service
        - course
        - job
        - mei_opportunity
      x-enum-varnames:
        - TypeService
        - TypeCourse
        - TypeJob
        - TypeMEIOpportunity

````