NationGraph Tags API
The Tags API from NationGraph — 4 operation(s) for tags.
The Tags API from NationGraph — 4 operation(s) for tags.
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/nationgraph-tags-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: Nationgraph Accounts Tags API
version: 0.2.36
servers:
- url: https://api.nationgraph.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Tags
paths:
/api/v3/workspaces/{workspace_id}/institution/{institution_id}/tags:
post:
tags:
- Tags
summary: Create Tags
operationId: create_tags_api_v3_workspaces__workspace_id__institution__institution_id__tags_post
security:
- HTTPBearer: []
parameters:
- name: workspace_id
in: path
required: true
schema:
type: string
title: Workspace Id
- name: institution_id
in: path
required: true
schema:
type: string
title: Institution Id
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TagItem'
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
put:
tags:
- Tags
summary: Update Tags
operationId: update_tags_api_v3_workspaces__workspace_id__institution__institution_id__tags_put
security:
- HTTPBearer: []
parameters:
- name: workspace_id
in: path
required: true
schema:
type: string
title: Workspace Id
- name: institution_id
in: path
required: true
schema:
type: string
title: Institution Id
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateTagsRequest'
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v3/tags:
post:
tags:
- Tags
summary: Persist New Tag
description: Persist a new tag for the user.
operationId: persist_new_tag_api_v3_tags_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TagItem'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- HTTPBearer: []
/api/v3/workspaces/{workspace_id}/tags:
get:
tags:
- Tags
summary: Get Workspace Tags
description: Get saved tags for the user within a specific workspace.
operationId: get_workspace_tags_api_v3_workspaces__workspace_id__tags_get
security:
- HTTPBearer: []
parameters:
- name: workspace_id
in: path
required: true
schema:
type: string
title: Workspace Id
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v3/workspaces/{workspace_id}/tags/{tag_id}:
delete:
tags:
- Tags
summary: Delete Workspace Tag
description: 'Delete a saved tag by its ID within a specific workspace.
Only deletes tags owned by the current user.'
operationId: delete_workspace_tag_api_v3_workspaces__workspace_id__tags__tag_id__delete
security:
- HTTPBearer: []
parameters:
- name: workspace_id
in: path
required: true
schema:
type: string
title: Workspace Id
- name: tag_id
in: path
required: true
schema:
type: string
title: Tag Id
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
TagItem:
properties:
label:
type: string
title: Label
hexcode:
type: string
title: Hexcode
type: object
required:
- label
- hexcode
title: TagItem
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
CreateTagsRequest:
properties:
tags:
items:
$ref: '#/components/schemas/TagItem'
type: array
title: Tags
type: object
required:
- tags
title: CreateTagsRequest
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
input:
title: Input
ctx:
type: object
title: Context
type: object
required:
- loc
- msg
- type
title: ValidationError
securitySchemes:
HTTPBearer:
type: http
scheme: bearer