Street.co.uk Email API

The Email API from Street.co.uk — 2 operation(s) for email.

Operations 3

POST /email/contacts Create a new contact #
GET /email/segments Get all segments #
POST /email/segments Create a new uploaded segment #

Documentation

Specifications

Other Resources

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/street-co-email-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 email required.

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

OpenAPI Specification

street-co-email-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Spectre Email API
  description: Public API for the Spectre products
  version: '1.0'
  contact:
    name: Spectre API Development Team
    url: https://spectre.uk.com
    email: apis@spectre.uk.com
servers:
- url: https://api.spectre.uk.com/v1
  description: production
security:
- your-api-token: []
tags:
- name: Email
paths:
  /email/contacts:
    post:
      summary: Create a new contact
      operationId: post-email-contacts
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                type: object
                additionalProperties: false
                properties:
                  data:
                    $ref: '#/components/schemas/Contact'
      tags:
      - Email
      description: This endpoint creates a new contact.
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              allOf:
              - required:
                - email
                properties:
                  title:
                    type: string
                    maxLength: 255
                  first_name:
                    type: string
                    maxLength: 255
                  last_name:
                    type: string
                    maxLength: 255
                  email:
                    type: string
                    format: email
                    maxLength: 255
                  phone:
                    type: string
                    maxLength: 255
                  subscription_status:
                    $ref: '#/components/schemas/SubsciptionStatus'
                  segment_id:
                    type: string
                    format: uuid
                    description: Optional ID of a segment with type 'uploaded' to send contacts to.
              type: object
        description: ''
  /email/segments:
    get:
      summary: Get all segments
      operationId: get-email-segments
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                type: object
                additionalProperties: false
                properties:
                  data:
                    $ref: '#/components/schemas/Segment'
      tags:
      - Email
      description: This endpoint gets all segments.
      requestBody:
        content: {}
        description: ''
      parameters:
      - $ref: '#/components/parameters/segment_type'
    post:
      summary: Create a new uploaded segment
      operationId: post-email-segments
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                type: object
                additionalProperties: false
                properties:
                  data:
                    $ref: '#/components/schemas/Segment'
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              allOf:
              - properties:
                  name:
                    type: string
                    maxLength: 255
                  description:
                    type: string
                    maxLength: 255
                required:
                - name
              type: object
        description: ''
      tags:
      - Email
      description: This endpoint creates a new uploaded segment.
components:
  schemas:
    BaseModel:
      title: Base Model
      type: object
      properties:
        type:
          type: string
        id:
          type: string
          format: uuid
        attributes:
          type: object
      required:
      - type
      - id
      - attributes
      description: This is a base schema that can be inherited by your main schemas to prevent duplicating boilerplate. You should use this for 'models' such as `User` or `Profile`
      x-tags:
      - JSON:API Structures
    ContactAttributes:
      title: ContactAttributes
      type: object
      properties:
        title:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
      examples: []
    Contact:
      title: Contact
      allOf:
      - $ref: '#/components/schemas/BaseModel'
      - type: object
        properties:
          type:
            type: string
            default: contact
          attributes:
            $ref: '#/components/schemas/ContactAttributes'
    Segment:
      title: Segment
      allOf:
      - $ref: '#/components/schemas/BaseModel'
      - type: object
        properties:
          type:
            type: string
            default: segment
          attributes:
            $ref: '#/components/schemas/SegmentAttributes'
    SegmentAttributes:
      title: SegmentAttributes
      type: object
      properties:
        name:
          type: string
        description:
          type:
          - string
          - 'null'
    SegmentType:
      title: SegmentType
      type: string
      enum:
      - static
      - dynamic
      - uploaded
    SubsciptionStatus:
      title: SubsciptionStatus
      type: string
      enum:
      - subscribed
      - unsubscribed
      - non_subscribed
  parameters:
    segment_type:
      name: filter[type]
      in: query
      required: false
      schema:
        $ref: '#/components/schemas/SegmentType'
  securitySchemes:
    your-api-token:
      type: http
      scheme: bearer
x-ext-urls: {}