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.
openapi: 3.2.0
info:
description: REST API for ChartHop
version: V1.0.0
title: ChartHop access Status API
contact:
name: ChartHop
url: https://www.charthop.com
email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: status
paths:
/v1/status:
get:
tags:
- status
summary: Returns true if the API is up and available
operationId: isOk
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/OkResponse'
components:
schemas:
OkResponse:
type: object
required:
- ok
properties:
ok:
type: boolean
description: whether the status is okay
example: 'true'