Advantage Solutions Categories API
The categories API from Advantage Solutions — 2 operation(s) for categories.
The categories API from Advantage Solutions — 2 operation(s) for categories.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/advantage-solutions-categories-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Advantage Solutions Categories API
version: wp/v2
x-derivation: Mechanically converted from the WordPress REST route-discovery document served at the URL in x-derived-from. Paths, methods, parameter names, types, enums, defaults and descriptions are copied verbatim from that document. Editor/administration and host-plugin namespaces (wp-block-editor, wp-site-health, wp-abilities, wpe/cache-plugin, wpe_sign_on_plugin, yoast, templates, widgets, plugins, themes, fonts, blocks, navigation, global-styles) are omitted; the discovery document remains the complete list.
x-refined-note:
- x-derived-from differs across the merged source definitions and was not carried
description: 'Operations tagged categories across 2 of this provider''s published API definitions: advantage-solutions-mrktblog-content-openapi.yml, advantage-solutions-youradv-content-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://mrktblog.com/wp-json
- url: https://youradv.com/wp-json
tags:
- name: categories
paths:
/wp/v2/categories:
servers:
- url: https://mrktblog.com/wp-json
get:
operationId: getWpV2Categories
summary: GET /wp/v2/categories
description: GET on the WordPress REST route `/wp/v2/categories` as advertised by mrktblog.com/wp-json/.
tags:
- categories
responses:
'200':
description: Successful response.
content:
application/json:
schema:
type:
- object
- array
'401':
description: Authentication required or insufficient capability.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: No route or resource matched.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
parameters:
- name: context
in: query
required: false
schema:
type: string
enum:
- view
- embed
- edit
default: view
description: Scope under which the request is made; determines fields present in response.
- name: page
in: query
required: false
schema:
type: integer
default: 1
minimum: 1
description: Current page of the collection.
- name: per_page
in: query
required: false
schema:
type: integer
default: 10
minimum: 1
maximum: 100
description: Maximum number of items to be returned in result set.
- name: search
in: query
required: false
schema:
type: string
description: Limit results to those matching a string.
- name: exclude
in: query
required: false
schema:
type: array
default: []
items:
type: integer
description: Ensure result set excludes specific IDs.
- name: include
in: query
required: false
schema:
type: array
default: []
items:
type: integer
description: Limit result set to specific IDs.
- name: order
in: query
required: false
schema:
type: string
enum:
- asc
- desc
default: asc
description: Order sort attribute ascending or descending.
- name: orderby
in: query
required: false
schema:
type: string
enum:
- id
- include
- name
- slug
- include_slugs
- term_group
- description
- count
default: name
description: Sort collection by term attribute.
- name: hide_empty
in: query
required: false
schema:
type: boolean
default: false
description: Whether to hide terms not assigned to any posts.
- name: parent
in: query
required: false
schema:
type: integer
description: Limit result set to terms assigned to a specific parent.
- name: post
in: query
required: false
schema:
type: integer
default: null
description: Limit result set to terms assigned to a specific post.
- name: slug
in: query
required: false
schema:
type: array
items:
type: string
description: Limit result set to terms with one or more specific slugs.
post:
operationId: createWpV2Categories
summary: POST /wp/v2/categories
description: POST on the WordPress REST route `/wp/v2/categories` as advertised by mrktblog.com/wp-json/.
tags:
- categories
responses:
'200':
description: Successful response.
content:
application/json:
schema:
type:
- object
- array
'401':
description: Authentication required or insufficient capability.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: No route or resource matched.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
description:
type: string
description: HTML description of the term.
name:
type: string
description: HTML title for the term.
slug:
type: string
description: An alphanumeric identifier for the term unique to its type.
parent:
type: integer
description: The parent term ID.
meta:
type: object
description: Meta fields.
required:
- name
security:
- applicationPassword: []
/wp/v2/categories/{id}:
parameters:
- name: id
in: path
required: true
schema:
type: string
description: Route parameter declared by the WordPress REST route regex.
servers:
- url: https://mrktblog.com/wp-json
get:
operationId: getWpV2CategoriesByid
summary: GET /wp/v2/categories/{id}
description: GET on the WordPress REST route `/wp/v2/categories/(?P<id>[\d]+)` as advertised by mrktblog.com/wp-json/.
tags:
- categories
responses:
'200':
description: Successful response.
content:
application/json:
schema:
type:
- object
- array
'401':
description: Authentication required or insufficient capability.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: No route or resource matched.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
parameters:
- name: context
in: query
required: false
schema:
type: string
enum:
- view
- embed
- edit
default: view
description: Scope under which the request is made; determines fields present in response.
post:
operationId: createWpV2CategoriesByid
summary: POST /wp/v2/categories/{id}
description: POST on the WordPress REST route `/wp/v2/categories/(?P<id>[\d]+)` as advertised by mrktblog.com/wp-json/.
tags:
- categories
responses:
'200':
description: Successful response.
content:
application/json:
schema:
type:
- object
- array
'401':
description: Authentication required or insufficient capability.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: No route or resource matched.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
description:
type: string
description: HTML description of the term.
name:
type: string
description: HTML title for the term.
slug:
type: string
description: An alphanumeric identifier for the term unique to its type.
parent:
type: integer
description: The parent term ID.
meta:
type: object
description: Meta fields.
security:
- applicationPassword: []
delete:
operationId: deleteWpV2CategoriesByid
summary: DELETE /wp/v2/categories/{id}
description: DELETE on the WordPress REST route `/wp/v2/categories/(?P<id>[\d]+)` as advertised by mrktblog.com/wp-json/.
tags:
- categories
responses:
'200':
description: Successful response.
content:
application/json:
schema:
type:
- object
- array
'401':
description: Authentication required or insufficient capability.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: No route or resource matched.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
parameters:
- name: force
in: query
required: false
schema:
type: boolean
default: false
description: Required to be true, as terms do not support trashing.
components:
schemas:
WPError:
type: object
description: The WordPress REST error envelope, observed live on this host.
properties:
code:
type: string
examples:
- rest_no_route
- rest_forbidden
message:
type: string
data:
type: object
properties:
status:
type: integer
required:
- code
- message
- data
securitySchemes:
applicationPassword:
type: http
scheme: basic
description: WordPress Application Passwords (HTTP Basic). The discovery document advertises the authorization endpoint at https://mrktblog.com/wp-admin/authorize-application.php. Read operations on published content are anonymous.
x-refined-from:
- advantage-solutions-mrktblog-content-openapi.yml
- advantage-solutions-youradv-content-openapi.yml