Skip to main content
GET
/
api
/
v1
/
meta
Get API metadata
curl --request GET \
  --url http://localhost:3000/api/v1/meta \
  --header 'Authorization: Bearer <token>'
{
  "version": "v1",
  "capabilities": [
    "<string>"
  ],
  "supported_fields": {
    "articles": [
      "<string>"
    ],
    "stories": [
      "<string>"
    ],
    "categories": [
      "<string>"
    ],
    "companies": [
      "<string>"
    ],
    "countries": [
      "<string>"
    ],
    "exchanges": [
      "<string>"
    ]
  },
  "content_types": [
    "<string>"
  ],
  "rate_limit_policy": "<string>",
  "supported_countries": [
    "<string>"
  ],
  "supported_scopes": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Headers

Authorization
string
required

Bearer token for authentication

Response

API metadata retrieved

version
string
required
Example:

"v1"

capabilities
string[]
required
supported_fields
object
required
content_types
string[]
required
rate_limit_policy
string
supported_countries
string[]
supported_scopes
string[]