NationGraph Email Sequences API

The Email Sequences API from NationGraph — 2 operation(s) for email sequences.

Operations 4

POST /api/v3/email-sequences Create Sequence #
GET /api/v3/email-sequences Get Sequences #
GET /api/v3/email-sequences/{sequence_id} Get Sequence #
PATCH /api/v3/email-sequences/{sequence_id} Update Sequence #

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/nationgraph-email-sequences-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

nationgraph-email-sequences-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nationgraph Accounts Email Sequences 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: Email Sequences
paths:
  /api/v3/email-sequences:
    post:
      tags:
      - Email Sequences
      summary: Create Sequence
      operationId: create_sequence_api_v3_email_sequences_post
      security:
      - HTTPBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateEmailSequenceRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSequenceResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - Email Sequences
      summary: Get Sequences
      operationId: get_sequences_api_v3_email_sequences_get
      security:
      - HTTPBearer: []
      parameters:
      - name: status
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Status
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmailSequenceResponse'
                title: Response Get Sequences Api V3 Email Sequences Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v3/email-sequences/{sequence_id}:
    get:
      tags:
      - Email Sequences
      summary: Get Sequence
      operationId: get_sequence_api_v3_email_sequences__sequence_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: sequence_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Sequence Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSequenceResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - Email Sequences
      summary: Update Sequence
      operationId: update_sequence_api_v3_email_sequences__sequence_id__patch
      security:
      - HTTPBearer: []
      parameters:
      - name: sequence_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Sequence Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailSequenceUpdates'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSequenceResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EmailSequenceConfig:
      properties:
        template_ids:
          items:
            type: string
            format: uuid
          type: array
          title: Template Ids
          default: []
      type: object
      title: EmailSequenceConfig
    EmailSequenceUpdates:
      properties:
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        config:
          anyOf:
          - $ref: '#/components/schemas/EmailSequenceConfig'
          - type: 'null'
        status:
          anyOf:
          - $ref: '#/components/schemas/EmailResourceStatus'
          - type: 'null'
      type: object
      title: EmailSequenceUpdates
    EmailResourceStatus:
      type: string
      enum:
      - draft
      - active
      - archived
      title: EmailResourceStatus
    CreateEmailSequenceRequest:
      properties:
        name:
          type: string
          title: Name
        config:
          $ref: '#/components/schemas/EmailSequenceConfig'
          default:
            template_ids: []
        status:
          $ref: '#/components/schemas/EmailResourceStatus'
          default: draft
      type: object
      required:
      - name
      title: CreateEmailSequenceRequest
    EmailSequenceResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        config:
          $ref: '#/components/schemas/EmailSequenceConfig'
        status:
          type: string
          title: Status
        created_by:
          type: string
          title: Created By
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
      - id
      - name
      - config
      - status
      - created_by
      - created_at
      - updated_at
      title: EmailSequenceResponse
    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