SponsorUnited Brand Synonym API

BrandSynonym

Operations 5

GET /api/brand-synonyms List brand synonyms #
POST /api/brand-synonyms Create brand synonym #
GET /api/brand-synonyms/{id} Get brand synonym #
PUT /api/brand-synonyms/{id} Update brand synonym #
DELETE /api/brand-synonyms/{id} Delete brand synonym #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sponsorunited-brandsynonym-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

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.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sponsorunited-brandsynonym-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Brand Synonym API
  version: v1
  description: BrandSynonym
tags:
- name: BrandSynonym
  description: BrandSynonym
paths:
  /api/brand-synonyms:
    get:
      tags:
      - BrandSynonym
      summary: List brand synonyms
      description: Returns all synonyms associated with a specific brand for search matching
      operationId: a99fbc64272789926939be282f5d875d
      responses:
        '200':
          description: List of brand synonyms
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BrandSynonymIndexResource'
      security:
      - bearerAuth: []
    post:
      tags:
      - BrandSynonym
      summary: Create brand synonym
      description: Creates a new synonym for a brand to improve search matching
      operationId: 367b001ca47c3c0a7bc990e9f0776bc3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrandSynonymStoreRequest'
      responses:
        '200':
          description: The new brand synonym.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandSynonymResource'
      security:
      - bearerAuth: []
  /api/brand-synonyms/{id}:
    get:
      tags:
      - BrandSynonym
      summary: Get brand synonym
      description: Returns the details of a specific brand synonym by ID
      operationId: 11fddf6004cf2152ff5469d0f5a29d9f
      parameters:
      - name: id
        in: path
        description: The id of the brand synonym to fetch.
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: A brand synonym with the given id.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandSynonymResource'
      security:
      - bearerAuth: []
    put:
      tags:
      - BrandSynonym
      summary: Update brand synonym
      description: Updates an existing brand synonym's text value
      operationId: 533cfd766b12e2a4265129866aa29b01
      parameters:
      - name: id
        in: path
        description: The id of the brand synonym to update.
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrandSynonymUpdateRequest'
      responses:
        '200':
          description: The updated brand synonym.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandSynonymResource'
      security:
      - bearerAuth: []
    delete:
      tags:
      - BrandSynonym
      summary: Delete brand synonym
      description: Permanently removes a brand synonym from the system
      operationId: f3142a208a67ca04993529109cbc6769
      parameters:
      - name: id
        in: path
        description: Id of brand synonym to delete
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Empty response when brand synonym has been deleted successfully.
          content:
            application/json:
              schema: {}
              example: '[]'
      security:
      - bearerAuth: []
components:
  schemas:
    BrandSynonymResource:
      properties:
        id:
          type: integer
        brand_id:
          type: integer
        synonym:
          type: string
      type: object
    BrandSynonymStoreRequest:
      required:
      - synonym
      type: object
      allOf:
      - properties:
          brand_id:
            type: integer
          synonym:
            type: string
        type: object
    BrandSynonymUpdateRequest:
      required:
      - synonym
      type: object
      allOf:
      - properties:
          synonym:
            type: string
        type: object
    BrandSynonymIndexResource:
      type: array
      items:
        properties:
          id:
            type: integer
          synonym:
            type: string
        type: object
  securitySchemes:
    bearerAuth:
      type: http
      name: JWT Authentication
      in: header
      bearerFormat: JWT
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      description: 'Service API key for external services (ai-api, chat-api). Generate with: php artisan su:api-token:generate'
      name: X-API-Key
      in: header