Noyo Status Detail API

The Status Detail API from Noyo — 2 operation(s) for status detail.

Operations 2

GET /api/v1/member_transactions/{transaction_id}/status_details Get a list of all Status Details #
GET /api/v1/member_transactions/{transaction_id}/status_details/latest Get latest Status Detail #

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/noyo-status-detail-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

noyo-status-detail-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: APIs to manage and consume information about Carriers
  title: Noyo Carrier Carrier Mapped Field Status Detail API
  version: 1.0.0
servers: []
tags:
- name: Status Detail
paths:
  /api/v1/member_transactions/{transaction_id}/status_details:
    x-summary: Get Status Details
    get:
      description: Returns a list of all status details for a given transaction.
      operationId: getStatusDetailList
      parameters:
      - description: The unique identifier of the member transaction
        in: path
        name: transaction_id
        required: true
        schema:
          example: 136e34f9-1eb5-4b31-af53-b3a37ef225ba
          format: uuid
          type: string
      - description: The max size of each page of results
        in: query
        name: page_size
        required: false
        schema:
          type: integer
      - description: The integer offset at which to start the page. Possible values are 0 to total_records - 1
        in: query
        name: offset
        required: false
        schema:
          type: integer
      - description: The attribute on which to sort the status details
        in: query
        name: sort_by
        required: false
        schema:
          type: string
      - description: Either asc or desc, to denote the data's direction
        in: query
        name: sort_direction
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              example:
                meta:
                  offset: 0
                  page_num: 1
                  page_size: 20
                  total_records: 3
                response:
                - event_created: 1673510745
                  status_detail: noyo_accepted
                - event_created: 1673510857
                  status_detail: carrier_accepted
                - event_created: 1673510869
                  status_detail: carrier_processing
              schema:
                $ref: '#/components/schemas/PaginatedStatusDetailResult'
          description: Successful Response - Returns all Status Details
      summary: Get a list of all Status Details
      tags:
      - Status Detail
  /api/v1/member_transactions/{transaction_id}/status_details/latest:
    x-summary: Get Latest Status Detail
    get:
      description: Returns the latest status detail for a given transaction.
      operationId: getLatestStatusDetail
      parameters:
      - description: The unique identifier of the member transaction
        in: path
        name: transaction_id
        required: true
        schema:
          example: 136e34f9-1eb5-4b31-af53-b3a37ef225ba
          format: uuid
          type: string
      responses:
        '200':
          content:
            application/json:
              example:
                event_created: 1673510869
                status_detail: carrier_accepted
              schema:
                $ref: '#/components/schemas/StatusDetailResult'
          description: Successful Response - Returns the latest Status Detail
      summary: Get latest Status Detail
      tags:
      - Status Detail
components:
  schemas:
    StatusDetailResult:
      properties:
        event_created:
          description: Timestamp indicating when the status detail was created
          example: '1673452723'
          type: integer
        status_detail:
          description: Type of Status detail
          enum:
          - noyo_accepted
          - carrier_accepted
          - carrier_processing
          - carrier_completed
          - noyo_verified
          example: carrier_accepted
          type: string
      required:
      - event_created
      - status_detail
      type: object
      x-field_order:
      - status_detail
      - event_created
    Meta:
      properties:
        offset:
          description: The offset of the first response record within the matching data set
          format: int32
          minimum: 0
          readOnly: true
          type: integer
        page_num:
          description: The page number of the response records within the overall data set (1-based integer)
          format: int32
          minimum: 1
          readOnly: true
          type: integer
        page_size:
          description: The maximum number of response records on each page of results
          format: int32
          minimum: 1
          readOnly: true
          type: integer
        total_records:
          description: The total number of records in the entire matching data set
          format: int32
          minimum: 0
          readOnly: true
          type: integer
      required:
      - offset
      - page_num
      - page_size
      type: object
    PaginatedStatusDetailResult:
      properties:
        meta:
          allOf:
          - $ref: '#/components/schemas/Meta'
          description: Metadata associated with the response data
        response:
          description: List of status detail results
          items:
            $ref: '#/components/schemas/StatusDetailResult'
          type: array
      required:
      - meta
      - response
      type: object
      x-field_order:
      - meta
      - response