openapi: 3.2.0 info: title: AeroFarms Taxonomy API version: v2 description: Public, unauthenticated read access to the editorial taxonomy behind the AeroFarms news archive — categories such as Awards, Press and Recipes, and the free-form tag vocabulary. Verified live at 9 categories and 455 tags on 2026-09-10. contact: name: AeroFarms url: https://www.aerofarms.com/contact/ email: info@aerofarms.com x-derived-from: https://www.aerofarms.com/wp-json/ route index + per-route HTTP OPTIONS schema documents x-derived-on: '2026-09-10' x-api-evangelist-note: Third-party profile. AeroFarms publishes no developer program; this documents the anonymously readable REST surface behind www.aerofarms.com. Every path, parameter and schema here was read from the server's own published route index and OPTIONS documents on 2026-09-10 — nothing is invented. servers: - url: https://www.aerofarms.com/wp-json description: AeroFarms WordPress REST API tags: - name: Taxonomy description: Editorial categories and tags applied to AeroFarms news posts. paths: /wp/v2/categories: get: operationId: listCategories summary: List categories description: Retrieve the news category taxonomy terms with post counts. 9 terms at capture. tags: - Taxonomy responses: '200': description: List categories content: application/json: schema: type: array items: $ref: '#/components/schemas/Category' headers: X-WP-Total: &id001 description: Total number of records matching the query. schema: type: integer X-WP-TotalPages: &id002 description: Total number of pages available at the current per_page. schema: type: integer Link: &id003 description: RFC 8288 pagination links (rel="next" / rel="prev"). schema: type: string '400': description: Invalid parameter(s) — rest_invalid_param. content: application/json: schema: $ref: '#/components/schemas/Error' '404': description: No such route or resource — rest_no_route / rest_*_invalid_id. content: application/json: schema: $ref: '#/components/schemas/Error' parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. /wp/v2/categories/{id}: get: operationId: getCategory summary: Retrieve a category description: Retrieve a single news category term by its numeric identifier. tags: - Taxonomy responses: '200': description: Retrieve a category content: application/json: schema: $ref: '#/components/schemas/Category' '400': description: Invalid parameter(s) — rest_invalid_param. content: application/json: schema: $ref: '#/components/schemas/Error' '404': description: No such route or resource — rest_no_route / rest_*_invalid_id. content: application/json: schema: $ref: '#/components/schemas/Error' parameters: - name: id in: path required: true description: Unique identifier for the resource. schema: type: integer - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/tags: get: operationId: listTags summary: List tags description: Retrieve the news tag vocabulary with post counts. 455 terms at capture. tags: - Taxonomy responses: '200': description: List tags content: application/json: schema: type: array items: $ref: '#/components/schemas/Tag' headers: X-WP-Total: *id001 X-WP-TotalPages: *id002 Link: *id003 '400': description: Invalid parameter(s) — rest_invalid_param. content: application/json: schema: $ref: '#/components/schemas/Error' '404': description: No such route or resource — rest_no_route / rest_*_invalid_id. content: application/json: schema: $ref: '#/components/schemas/Error' parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. components: schemas: Error: title: WP REST error type: object description: The WordPress REST error envelope returned on every non-2xx response, observed live 2026-09-10. properties: code: type: string description: Machine-readable error code, e.g. rest_forbidden, rest_no_route, rest_invalid_param. message: type: string description: Human-readable message. data: type: object properties: status: type: integer description: HTTP status code repeated in the body. params: type: object description: Per-parameter validation messages, on rest_invalid_param. Category: type: object properties: id: description: Unique identifier for the term. type: integer count: description: Number of published posts for the term. type: integer description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - category parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object properties: [] acf: description: ACF field data type: object properties: [] title: category Tag: type: object properties: id: description: Unique identifier for the term. type: integer count: description: Number of published posts for the term. type: integer description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - post_tag meta: description: Meta fields. type: object properties: [] title: tag