MollyBox Resources API

The Resources API from MollyBox — 4 operation(s) for resources.

Operations 5

POST /api/resources Capture Resource #
GET /api/resources List Resources #
GET /api/resources/{resource_id} Get Resource #
PATCH /api/resources/{resource_id}/status Update Resource Status #
POST /api/resources/{resource_id}/open Open Resource #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mollybox-resources-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mollybox-resources-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arcflow Admin Resources API
  version: 0.1.0
servers:
- url: http://www.mollybox.cn
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Resources
paths:
  /api/resources:
    post:
      summary: Capture Resource
      description: Capture a new URL resource.
      operationId: capture_resource_api_resources_post
      security:
      - HTTPBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CaptureRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Resources
    get:
      summary: List Resources
      description: List resources with optional keyword, status, and source filters.
      operationId: list_resources_api_resources_get
      security:
      - HTTPBearer: []
      parameters:
      - name: q
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Q
      - name: status
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              $ref: '#/components/schemas/ResourceStatus'
          - type: 'null'
          title: Status
      - name: source_type
        in: query
        required: false
        schema:
          anyOf:
          - $ref: '#/components/schemas/SourceType'
          - type: 'null'
          title: Source Type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Resource'
                title: Response List Resources Api Resources Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Resources
  /api/resources/{resource_id}:
    get:
      summary: Get Resource
      description: Get a single resource by ID.
      operationId: get_resource_api_resources__resource_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: resource_id
        in: path
        required: true
        schema:
          type: string
          title: Resource Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Resources
  /api/resources/{resource_id}/status:
    patch:
      summary: Update Resource Status
      description: Update a resource's status.
      operationId: update_resource_status_api_resources__resource_id__status_patch
      security:
      - HTTPBearer: []
      parameters:
      - name: resource_id
        in: path
        required: true
        schema:
          type: string
          title: Resource Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StatusUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Resources
  /api/resources/{resource_id}/open:
    post:
      summary: Open Resource
      description: Open a resource's URL in the default browser and record the open time.
      operationId: open_resource_api_resources__resource_id__open_post
      security:
      - HTTPBearer: []
      parameters:
      - name: resource_id
        in: path
        required: true
        schema:
          type: string
          title: Resource Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Resources
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ResourceStatus:
      type: string
      enum:
      - inbox
      - next
      - doing
      - done
      - archived
      title: ResourceStatus
      description: Learning status of a resource.
    SourceType:
      type: string
      enum:
      - github
      - x
      - wechat
      - web
      title: SourceType
      description: Origin platform of a resource URL.
    Resource:
      properties:
        id:
          type: string
          title: Id
        url:
          type: string
          title: Url
        canonical_url:
          type: string
          title: Canonical Url
        source_type:
          $ref: '#/components/schemas/SourceType'
          default: web
        status:
          $ref: '#/components/schemas/ResourceStatus'
          default: inbox
        title:
          anyOf:
          - type: string
          - type: 'null'
          title: Title
        domain:
          anyOf:
          - type: string
          - type: 'null'
          title: Domain
        capture_count:
          type: integer
          title: Capture Count
          default: 1
        metadata_status:
          $ref: '#/components/schemas/MetadataStatus'
          default: pending
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        last_opened_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Opened At
      type: object
      required:
      - url
      - canonical_url
      title: Resource
      description: Core domain object representing a captured URL resource.
    MetadataStatus:
      type: string
      enum:
      - pending
      - fetched
      - failed
      title: MetadataStatus
      description: Metadata enrichment lifecycle for a resource.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    CaptureRequest:
      properties:
        url:
          type: string
          title: Url
      type: object
      required:
      - url
      title: CaptureRequest
      description: API request body for capturing a new resource.
    StatusUpdateRequest:
      properties:
        status:
          $ref: '#/components/schemas/ResourceStatus'
      type: object
      required:
      - status
      title: StatusUpdateRequest
      description: API request body for updating resource status.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer