> ## 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.

# report an artifact

> Report an artifact for abuse. Keyless, because viewers are usually logged out; rate-limited per IP. `reason` must be one of the fixed set.



## OpenAPI

````yaml /openapi.json post /artifacts/{id}/report
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}/report:
    post:
      tags:
        - Artifacts
      summary: report an artifact
      description: >-
        Report an artifact for abuse. Keyless, because viewers are usually
        logged out; rate-limited per IP. `reason` must be one of the fixed set.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - reason
              properties:
                reason:
                  type: string
                  enum:
                    - Spam or misleading
                    - Phishing or scam
                    - Malware or harmful code
                    - Sexual or explicit content
                    - Violence or hate
                    - Illegal goods or activity
                    - Copyright or trademark
                    - Private or confidential info
                    - Other
                  description: Why it is being reported.
                note:
                  type: string
                  description: Optional free-text detail (max 1000 chars).
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limited
          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.

````