Filebase Objects API

Object upload, download, copy, delete, and metadata

Operations 5

GET /{bucket} List objects in a bucket #
PUT /{bucket}/{key} Upload an object #
GET /{bucket}/{key} Download an object #
HEAD /{bucket}/{key} Get object metadata #
DELETE /{bucket}/{key} Delete an object #

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/filebase-objects-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

filebase-objects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Filebase S3-Compatible Objects API
  description: The Filebase S3-Compatible API provides standard AWS S3 protocol support for bucket and object management. Developers can use any existing S3 SDK, CLI tool, or framework with endpoint s3.filebase.io and region us-east-1. Authentication uses AWS Signature Version 4 (AWS4-HMAC-SHA256) with Filebase access key and secret key pairs. Supported operations include bucket creation and deletion, object upload (including multipart), copy, delete, and listing. Objects stored in IPFS-backed buckets are automatically pinned with 3x geo-redundant replication.
  version: '2006-03-01'
  contact:
    name: Filebase Support
    url: https://filebase.com/
    email: support@filebase.com
  termsOfService: https://filebase.com/terms/
  license:
    name: Proprietary
    url: https://filebase.com/terms/
servers:
- url: https://s3.filebase.io
  description: Filebase S3-Compatible Endpoint
- url: https://{bucket}.s3.filebase.io
  description: Filebase S3 Virtual-Hosted-Style Endpoint
  variables:
    bucket:
      default: my-bucket
      description: Bucket name
security:
- AWS4Auth: []
tags:
- name: Objects
  description: Object upload, download, copy, delete, and metadata
paths:
  /{bucket}:
    parameters:
    - $ref: '#/components/parameters/bucket'
    get:
      operationId: listObjects
      summary: List objects in a bucket
      description: Returns some or all (up to 1,000) of the objects in a bucket. Use list-type=2 for ListObjectsV2.
      tags:
      - Objects
      parameters:
      - name: prefix
        in: query
        description: Limits the response to keys that begin with the specified prefix
        schema:
          type: string
      - name: delimiter
        in: query
        description: A delimiter is a character you use to group keys
        schema:
          type: string
      - name: marker
        in: query
        description: Specifies the key to start with when listing objects
        schema:
          type: string
      - name: max-keys
        in: query
        description: Sets the maximum number of keys returned (default 1000)
        schema:
          type: integer
          maximum: 1000
          default: 1000
      - name: list-type
        in: query
        description: Version 2 of list objects request (set to 2)
        schema:
          type: integer
          enum:
          - 2
      - name: continuation-token
        in: query
        description: Indicates Amazon S3 that the list is being continued with a token (V2)
        schema:
          type: string
      responses:
        '200':
          description: Successfully listed objects
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/ListBucketResult'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
  /{bucket}/{key}:
    parameters:
    - $ref: '#/components/parameters/bucket'
    - $ref: '#/components/parameters/key'
    copy:
      operationId: copyObject
      summary: Copy an object
      description: Creates a copy of an object that is already stored in Filebase.
      tags:
      - Objects
      parameters:
      - name: x-amz-copy-source
        in: header
        required: true
        description: Specifies the source bucket and key name (bucket/key)
        schema:
          type: string
      responses:
        '200':
          description: Object copied successfully
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/CopyObjectResult'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: putObject
      summary: Upload an object
      description: Adds an object to a bucket. Objects are automatically pinned to IPFS for IPFS-backed buckets and receive 3x geo-redundant replication. The CID is returned in the x-amz-meta-cid response header.
      tags:
      - Objects
      parameters:
      - name: x-amz-meta-cid
        in: header
        description: IPFS CID of the uploaded object (response header)
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/octet-stream:
            schema:
              type: string
              format: binary
      responses:
        '200':
          description: Object uploaded successfully
          headers:
            ETag:
              description: Entity tag (MD5 hash) of the uploaded object
              schema:
                type: string
            x-amz-meta-cid:
              description: IPFS CID of the uploaded object
              schema:
                type: string
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
    get:
      operationId: getObject
      summary: Download an object
      description: Retrieves an object from Filebase. Returns the object data.
      tags:
      - Objects
      parameters:
      - name: Range
        in: header
        description: Downloads the specified range bytes of an object
        schema:
          type: string
      responses:
        '200':
          description: Object content
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
          headers:
            Content-Type:
              schema:
                type: string
            ETag:
              schema:
                type: string
            x-amz-meta-cid:
              description: IPFS CID of the object
              schema:
                type: string
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
    head:
      operationId: headObject
      summary: Get object metadata
      description: Retrieves metadata from an object without returning the object itself.
      tags:
      - Objects
      responses:
        '200':
          description: Object metadata
          headers:
            Content-Type:
              schema:
                type: string
            Content-Length:
              schema:
                type: integer
            ETag:
              schema:
                type: string
            x-amz-meta-cid:
              description: IPFS CID of the object
              schema:
                type: string
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteObject
      summary: Delete an object
      description: Removes an object from a bucket.
      tags:
      - Objects
      responses:
        '204':
          description: Object deleted successfully
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      xml:
        name: Error
      properties:
        Code:
          type: string
        Message:
          type: string
        Resource:
          type: string
        RequestId:
          type: string
    CopyObjectResult:
      type: object
      xml:
        name: CopyObjectResult
      properties:
        LastModified:
          type: string
          format: date-time
        ETag:
          type: string
    ListBucketResult:
      type: object
      xml:
        name: ListBucketResult
      properties:
        Name:
          type: string
          description: Bucket name
        Prefix:
          type: string
          description: Limits the response to keys beginning with the specified prefix
        MaxKeys:
          type: integer
          description: Maximum number of keys returned
        IsTruncated:
          type: boolean
          description: Whether the results are truncated
        Contents:
          type: array
          items:
            type: object
            properties:
              Key:
                type: string
              LastModified:
                type: string
                format: date-time
              ETag:
                type: string
              Size:
                type: integer
                format: int64
              StorageClass:
                type: string
  responses:
    NotFound:
      description: Resource not found
      content:
        application/xml:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Access denied
      content:
        application/xml:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    bucket:
      name: bucket
      in: path
      required: true
      description: Name of the bucket
      schema:
        type: string
    key:
      name: key
      in: path
      required: true
      description: Object key (file path within the bucket)
      schema:
        type: string
  securitySchemes:
    AWS4Auth:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 (AWS4-HMAC-SHA256) with Filebase access key and secret key. Use endpoint s3.filebase.io and region us-east-1.
externalDocs:
  description: Filebase S3-Compatible API Documentation
  url: https://filebase.com/docs/