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

# get an artifact

> Fetch a published artifact's data by id. Returns `{ id, type, title, content, created_at, updated_at }`. Public, no auth — the id is an unguessable uuid. A private, missing, or taken-down artifact returns 404/403 rather than leaking whether it exists.



## OpenAPI

````yaml /openapi.json get /artifacts/{id}
openapi: 3.1.0
info:
  title: fetchbean API
  version: v1
  description: >-
    One key for web search, page reads, weather, social data, and raw provider
    access.
servers:
  - url: https://api.fetchbean.com
security:
  - apiKeyAuth: []
paths:
  /artifacts/{id}:
    get:
      tags:
        - Artifacts
      summary: get an artifact
      description: >-
        Fetch a published artifact's data by id. Returns `{ id, type, title,
        content, created_at, updated_at }`. Public, no auth — the id is an
        unguessable uuid. A private, missing, or taken-down artifact returns
        404/403 rather than leaking whether it exists.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Private
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '410':
          description: Expired
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
            retryable:
              type: boolean
            billable:
              type: boolean
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your fetchbean API key (fb_…). Keys are not accepted through
        Authorization.

````