Methods to query companies
Aurora API (v1.23.0-rc1)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.provablemarkets.com/_mock/apis/connectapi
https://developer.provablemarkets.com
Request
PATH: /aurora.core.apiengine.loginv1.LoginService/LoginWithApiCredentials
Request an access token. To identify, please request a client_id and secret from your representative at Provable Markets.
Please note the services expect a JWT Bearer Token. For instance, when you pass the access_token to a cURL request you will have to pass it in the header like this:
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN"Unfortunately the keyword Bearer is currently missing from the examples.
- Mock serverhttps://developer.provablemarkets.com/_mock/apis/connectapi/aurora.core.apiengine.loginv1.LoginService/LoginWithApiCredentials
- https://developer.provablemarkets.com/aurora.core.apiengine.loginv1.LoginService/LoginWithApiCredentials
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.provablemarkets.com/_mock/apis/connectapi/aurora.core.apiengine.loginv1.LoginService/LoginWithApiCredentials \
-H 'Content-Type: application/json' \
-d '{
"client_id": "string",
"secret": "string"
}'Response
application/json
{ "access_token": "string" }