Skip to main content
GET
/
sponsor
/
information
Get Detailed Brand Profile Information
curl --request GET \
  --url https://apiv3.creatordb.app/sponsor/information \
  --header 'api-key: <api-key>'
{
  "data": {
    "brandId": "acer.com",
    "name": "Acer",
    "alias": [
      "acer.co",
      "store.acer.com",
      "acer.link"
    ],
    "logo": "https://i.imgur.com/bazrFjP.png",
    "description": "Acer is a Taiwanese multinational hardware and electronics corporation.",
    "companySize": "501-1,000",
    "keyPeople": [
      "Carolyn Yeh",
      "George Huang",
      "Stan Shih"
    ],
    "industries": [
      "Computer",
      "ConsumerElectronics",
      "Hardware"
    ],
    "country": "TWN",
    "location": "Taipei, Taiwan",
    "website": "http://www.acer.com",
    "socialMedia": [
      {
        "platform": "facebook",
        "url": "https://www.facebook.com/Acer"
      }
    ],
    "competitors": [
      "Apple",
      "HP",
      "ASUS"
    ],
    "totalSponsoredContent": 278,
    "activePlatforms": [
      "youtube",
      "instagram"
    ]
  },
  "traceId": "f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0",
  "timestamp": 1750732453635,
  "creditsAvailable": 975,
  "creditsUsed": 25,
  "errorCode": "",
  "errorDescription": "",
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.creatordb.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api-key
string
header
required

The valid CreatorDB API key for authentication.

Query Parameters

brandId
string
required

Brand's unique identifier, typically the primary domain. Allowed characters: letters (a-z, A-Z), digits (0-9), periods (.), underscores (_), and hyphens (-).

Minimum string length: 1
Pattern: ^[a-zA-Z0-9._-]+$
Example:

"acer.com"

Response

200 - application/json

Detailed brand profile information returned successfully.

Sponsor Information API response with full brand identity metadata

data
object
required

Identity and metadata for a specific brand, such as company details, industries, and competitors. Does not include sponsored content performance metrics or sponsored creator relationships.

traceId
string
required

Unique trace ID for each request.

Example:

"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0"

timestamp
integer
required

Time the response was generated, represented as a Unix timestamp in milliseconds.

Example:

1750732453635

creditsAvailable
number
required

Remaining credits available for this API key after the current request.

Example:

975

creditsUsed
number
required

Number of API credits consumed by this request.

Example:

25

errorCode
string
required

Error code returned if the request fails. Empty if the request is successful.

Example:

""

errorDescription
string
required

Description of the error. Empty if the request is successful.

Example:

""

success
boolean
required

true if the request is successful.

Example:

true

Last modified on April 28, 2026