OneRail Assets API

The Assets API from OneRail — 1 operation(s) for assets.

Operations 1

GET /assets/{image} Display image stored in Azure storage account #

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/onerail-assets-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

onerail-assets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Onerail Assets API
  version: 0.0.3
  license:
    name: UNLICENSED
  description: 'Operations tagged Assets across 2 of this provider''s published API definitions: onerail-assets-api-openapi.yml, onerail-delivery-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://onerail-delivery-api-prod.azurewebsites.net
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- ApiKey: []
  AppId: []
tags:
- name: Assets
paths:
  /assets/{image}:
    x-exegesis-controller: Image
    get:
      summary: Display image stored in Azure storage account
      operationId: viewImage
      security: []
      parameters:
      - name: image
        in: path
        description: image name
        required: true
        schema:
          type: string
      - name: authentication
        in: query
        description: provide auth
        schema:
          type: string
      responses:
        '302':
          description: Success. Redirected to image blob with access token
          headers:
            Location:
              schema:
                type: string
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Assets
    servers:
    - url: https://onerail-delivery-api-prod.azurewebsites.net
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    Error:
      required:
      - message
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        errors:
          type: object
        errorDetails:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
                description: A human-readable explanation specific to this occurrence of the problem
              pointer:
                type: string
                description: A JSON Pointer [RFC6901] to the associated entity in the request document
            required:
            - detail
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-ONERAIL-API-KEY
    AppId:
      type: apiKey
      in: header
      name: X-ONERAIL-APP-ID
    ApiKeyAndAppId:
      type: apiKey
      in: header
      name: X-ONERAIL-API-KEY-AND-APP-ID
x-refined-from:
- onerail-assets-api-openapi.yml
- onerail-delivery-api-openapi.yml