Pixelixe Document API

The Document API from Pixelixe — 2 operation(s) for document.

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/pixelixe-document-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 email required.

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

OpenAPI Specification

pixelixe-document-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Pixelixe Authentication Document API
  version: '2.0'
  description: '

    High-quality and ultra-fast Image Editing API. Resize, Crop, Flip, Rotate,

    Contrast, Opacify, Blur and transform your photos with APIs.'
servers:
- url: https://studio.pixelixe.com/api
security:
- bearerAuth: []
tags:
- name: Document
paths:
  /document/search/v2:
    get:
      summary: Pixelixe Search Documents
      description: Retrieve documents based on optional query parameters.
      parameters:
      - name: document_uid
        in: query
        description: Unique identifier for the document.
        schema:
          type: string
      - name: user_uid
        in: query
        description: Unique identifier for the user.
        schema:
          type: string
      responses:
        '200':
          description: Document search results.
          content:
            application/json:
              example:
                documents:
                - name: Demo-template-1
                  width: 600
                  height: 600
                  document_uid: 32f59312815640e186cf17fe3fd5c1d9
                  last_modification_date: 03-08-2021_20:38:21:579
                  public_png_url: https://example.com/image.png
      tags:
      - Document
  /document/delete/v2:
    delete:
      summary: Pixelixe Delete a Document
      description: Deletes a specific document by UID.
      parameters:
      - name: document_uid
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Document deleted successfully.
          content:
            application/json:
              example:
                status: success
                message: Document deleted.
      tags:
      - Document
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer