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:
title: Brandcast Account API
version: 1.0.0
description: Account information for a Brandcast account. Part of the Brandcast API, which opens the Brandcast platform to developers to programmatically perform Design Studio actions.
contact:
name: Brandcast API
url: https://developer.brandcast.io/
servers:
- url: https://api.brandcast-prod.io/v1
description: Brandcast production API
security:
- apiKeyHeader: []
tags:
- name: Account
paths:
/account:
get:
summary: Get account info
description: Returns account information for this Brandcast account.
operationId: getAccountInfo
tags:
- Account
responses:
'200':
description: Successful response.
content:
application/json:
schema: {}
'403':
description: Missing or invalid API key. The Brandcast API gateway answers unauthenticated requests with {"message":"Missing Authentication Token"}.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
Error:
type: object
description: Error envelope returned by the Brandcast API gateway.
properties:
message:
type: string
securitySchemes:
apiKeyHeader:
type: apiKey
in: header
name: x-api-key
description: API key issued by Brandcast and tied to the developer's Brandcast account. Must be sent over HTTPS.
externalDocs:
description: Brandcast API developer portal
url: https://developer.brandcast.io/