GitHub Raw JSON API

APIs-guru / openapi-directory

4,452 Unknown

🌐 Wikipedia for Web APIs. Directory of REST API definitions in OpenAPI 2.0/3.x format

openapi-directory Specification

Located in APIs/1forge.com/0.0.1/swagger.yaml on branch HEAD

2.0 (YAML) YAML 1.4 KB
Raw YAML Specification
swagger: "2.0"
schemes:
  - https
  - http
host: 1forge.com
basePath: /forex-quotes
info:
  contact:
    email: [email protected]
    name: 1Forge
    url: http://1forge.com
  description: Stock and Forex Data and Realtime Quotes
  title: 1Forge Finance APIs
  version: 0.0.1
  x-apisguru-categories:
    - financial
  x-logo:
    backgroundColor: "#24292e"
    url: https://1forge.com/assets/images/f-blue.svg
  x-origin:
    - format: swagger
      url: http://1forge.com/openapi.json
      version: "2.0"
  x-providerName: 1forge.com
produces:
  - application/json
paths:
  /quotes:
    get:
      description: Get quotes
      externalDocs:
        description: Find out more
        url: http://1forge.com/forex-data-api
      responses:
        "200":
          description: A list of quotes
      summary: Get quotes for all symbols
      tags:
        - forex
        - finance
        - quotes
  /symbols:
    get:
      description: Symbol List
      externalDocs:
        description: Find out more
        url: http://1forge.com/forex-data-api
      responses:
        "200":
          description: A list of symbols
          schema:
            example:
              - EURUSD
              - GBPJPY
              - AUDUSD
            items:
              type: string
            type: array
      summary: Get a list of symbols for which we provide real-time quotes
      tags:
        - forex
        - finance
        - quotes